ICellSizeLevels Interface

Provides access to members that control cell size levels.

Members

Name Description
Method Add Adds a cell size level.
Read-only property Count The property count.
Read-only property Element Returns the cell size level at the specified position.
Method Find Finds the cell size level closest to the specified cell size value and returns its index within the collection.
Method Insert Adds a cell size level at the specified position.
Method Remove Removes the cell size level at the specified position.
Method 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.

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.