Provides access to members that control cell size levels.
Members
Name | Description | |
---|---|---|
Add | Adds a cell size level. | |
Count | The property count. | |
Element | Returns the cell size level at the specified position. | |
Find | Finds the cell size level closest to the specified cell size value and returns its index within the collection. | |
Insert | Adds a cell size level at the specified position. | |
Remove | Removes the cell size level at the specified position. | |
RemoveAll | Removes all cell size levels. |
ICellSizeLevels.Add Method
Adds a cell size level.
Public Sub Add ( _
ByVal pCellSizeLevel As ICellSizeLevel _
)
public void Add (
ICellSizeLevel pCellSizeLevel
);
ICellSizeLevels.Count Property
The property count.
Public ReadOnly Property Count As Integer
public int Count {get;}
ICellSizeLevels.Element Property
Returns the cell size level at the specified position.
Public Function get_Element ( _
ByVal Index As Integer _
) As ICellSizeLevel
public ICellSizeLevel get_Element (
int Index
);
ICellSizeLevels.Find Method
Finds the cell size level closest to the specified cell size value and returns its index within the collection.
Public Function Find ( _
ByVal searchCellSize As Double _
) As Integer
public int Find (
double searchCellSize
);
ICellSizeLevels.Insert Method
Adds a cell size level at the specified position.
Public Sub Insert ( _
ByVal Index As Integer, _
ByVal pCellSizeLevels As ICellSizeLevel _
)
public void Insert (
int Index,
ICellSizeLevel pCellSizeLevels
);
ICellSizeLevels.Remove Method
Removes the cell size level at the specified position.
Public Sub Remove ( _
ByVal Index As Integer _
)
public void Remove (
int Index
);
ICellSizeLevels.RemoveAll Method
Removes all cell size levels.
Public Sub RemoveAll ( _
)
public void RemoveAll (
);
Classes that implement ICellSizeLevels
Classes | Description |
---|---|
CellSizeLevels | A collection of one or more cell size level objects. |