SectionStyleTableItem Property |
Conceptually, the section style table is an array of section styles.
The operator[] can be used to get individual section styles. A section
style is either active or deleted and this state is reported by
SectionStyle.IsDeleted.
Namespace:
Rhino.DocObjects.Tables
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 9.0
Syntaxpublic SectionStyle this[
int index
] { get; }Public ReadOnly Default Property Item (
index As Integer
) As SectionStyle
Get
Parameters
- index
- Type: SystemInt32
zero based array index.
Return Value
Type:
SectionStyle
Reference to the section style. If index is out of range, null is
returned. Note that this reference may become invalid after
AddSectionStyle() is called.
See Also