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