Provides access to the Layer Descriptions Interface.
Members
Name | Description | |
---|---|---|
Add | Adds a layer description. | |
Count | The layer description count. | |
Element | The layer description at the specified position. | |
Insert | Adds a layer description at the specified position. | |
Remove | Removes the layer description at the specified position. | |
RemoveAll | Removes all layer descriptions. |
ILayerDescriptions.Add Method
Adds a layer description.
Public Sub Add ( _
ByVal LayerDescription As ILayerDescription _
)
public void Add (
ILayerDescription LayerDescription
);
ILayerDescriptions.Count Property
The layer description count.
Public ReadOnly Property Count As Integer
public int Count {get;}
ILayerDescriptions.Element Property
The layer description at the specified position.
Public Function get_Element ( _
ByVal Index As Integer _
) As ILayerDescription
public ILayerDescription get_Element (
int Index
);
ILayerDescriptions.Insert Method
Adds a layer description at the specified position.
Public Sub Insert ( _
ByVal Index As Integer, _
ByVal LayerDescription As ILayerDescription _
)
public void Insert (
int Index,
ILayerDescription LayerDescription
);
ILayerDescriptions.Remove Method
Removes the layer description at the specified position.
Public Sub Remove ( _
ByVal Index As Integer _
)
public void Remove (
int Index
);
ILayerDescriptions.RemoveAll Method
Removes all layer descriptions.
Public Sub RemoveAll ( _
)
public void RemoveAll (
);
Classes that implement ILayerDescriptions
Classes | Description |
---|---|
LayerDescriptions | A collection of Layer Description objects. |