[]
        
(Showing Draft Content)

GrapeCity.Documents.Word.VariableCollection.Item

this Property

this[string]

Gets a document variable by the case-insensitive name.

Declaration
public Variable this[string name] { get; }
Public ReadOnly Default Property Item(name As String) As Variable
Parameters
Type Name Description
string name

The case-insensitive name of the variable.

Property Value
Type Description
Variable

A Variable with the specified name.

this[int]

Gets a document variable at the specified index.

Declaration
public Variable this[int index] { get; }
Public ReadOnly Default Property Item(index As Integer) As Variable
Parameters
Type Name Description
int index

Zero-based index of the document variable.

Property Value
Type Description
Variable

A Variable with the specified index.

Implements