I3DMLFeatureLayers80
This interface returns the number of feature layers in the 3DML dataset and provides the index of each layer to access the feature layers.
|
Properties |
|
|
Gets the number of feature layers in the 3DML dataset. |
|
|
Gets the I3DMLFeatureLayer80 element in the specified zero-based index. |
Count
Gets the number of feature layers in the 3DML dataset.
JavaScript |
|
Count |
C# |
|
int Count { get; } |
C++ |
|
HRESULT Count([out, retval] long* pVal); |
Item
Gets the I3DMLFeatureLayer80 element in the specified zero-based index.
To access a specific element use the following syntax: I3DMLFeatureLayers80(index).
C# exposes this property as an indexer accessed using the following syntax: I3DMLFeatureLayers80[index].
JavaScript |
|
Item(Index) |
C# |
|
dynamic this[object Index] { get; } |
C++ |
|
HRESULT Item( [in] VARIANT Index, [out, retval] VARIANT* pVal) |