 | CLSTAppend Method |
Add the items in one list to another list.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic void Append(
CLST lst2
)
public void Append(
CLST lst2
)
Public Sub Append (
lst2 As CLST
)
Public Sub Append (
lst2 As CLST
)
public:
void Append(
CLST^ lst2
)
public:
void Append(
CLST^ lst2
)
member Append :
lst2 : CLST -> unit
member Append :
lst2 : CLST -> unit
Parameters
- lst2
- Type: GeoEngine.Core.GXNetXCLST
List to append to the above LST.
Remarks
Item names and values are added using "AddUniqueItem_LST",
so that existing items with the same name are replaced, and if
items are duplicated in the appended LST, the last one will be
the one to remain after the process is complete.
See Also