VariableCollection indexer

__getitem__(index)

Gets or sets a document variable at the specified index. None values are not allowed as a right hand side of the assignment and will be replaced by empty string.

def __getitem__(self, index: int):
    ...
ParameterTypeDescription
indexintZero-based index of the document variable.

See Also