Removes column style by index in the collection, the first column of the collection cannot be removed.
Namespace: Autodesk.Civil.DatabaseServices.StylesAssembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.4.2516.0
Syntax
C# |
---|
public void RemoveAt(
int index
) |
Visual Basic |
---|
Public Sub RemoveAt ( _
index As Integer _
) |
Visual C++ |
---|
public:
void RemoveAt(
int index
) |
Parameters
- index
- Type: System..::..Int32
Index of the column style to remove.
Exceptions
Exception | Condition |
---|
System..::..ArgumentException |
Thrown when index is less than 1, or when index is greater than or equal to collection count.
|
See Also