 | CDBSelect Method |
Select/deselect lines based on selection string
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic void Select(
string select,
int mode
)
public void Select(
string select,
int mode
)
Public Sub Select (
select As String,
mode As Integer
)
Public Sub Select (
select As String,
mode As Integer
)
public:
void Select(
String^ select,
int mode
)
public:
void Select(
String^ select,
int mode
)
member Select :
select : string *
mode : int -> unit
member Select :
select : string *
mode : int -> unit
Parameters
- select
- Type: SystemString
Selection - mode
- Type: SystemInt32
<define>DB_LINE_SELECT</define>
Remarks
Selections/deselections are cumulative. If lines had already
been selected, then any further selection/deselection will
affect that set of selections.
E.g. "L99:800" is the string to select all normal lines from
99 to 800. If Select_DB is called again to select "L1000",
then lines 99 to 800 and 1000 would all be selected.
Use a "T" prefix for Tie lines.
Use an "F" prefix to specify lines of a specific flight.
E.g. "F10" would select all lines of flight 10.
Use an empty string ("") to select/deselect ALL lines.
See Also