DocumentPropertyCollection.Item

DocumentPropertyCollection indexer (1 of 2)

Returns a DocumentProperty object by the name of the property.

public virtual DocumentProperty this[string name] { get; }
ParameterDescription
nameThe case-insensitive name of the property to retrieve.

Remarks

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

See Also


DocumentPropertyCollection indexer (2 of 2)

Returns a DocumentProperty object by index.

public DocumentProperty this[int index] { get; }
ParameterDescription
indexZero-based index of the DocumentProperty to retrieve.

See Also