get method

get(self, name)

Returns a DocumentProperty object by the name of the property.


def get(self, name):
    ...
ParameterTypeDescription
namestrThe case-insensitive name of the property to retrieve.

Remarks

Returns null if a property with the specified name is not found.

get(self, index)

Returns a DocumentProperty object by index.

Returns


def get(self, index):
    ...
ParameterTypeDescription
indexintZero-based index of the DocumentProperty to retrieve.

See Also