XFormCollection.Item

XFormCollection indexer (1 of 2)

Returns XForm by index.

public XForm this[int index] { get; }
ParameterDescription
indexIndex of XFormCollection. XForms numbering is started from 1.

Return Value

Retrieved XForm.

See Also


XFormCollection indexer (2 of 2)

Returns XForm by its name. Exception is thrown if XForm with specified name is not found.

public XForm this[string name] { get; }
ParameterDescription
nameName of the XForm.

Return Value

Retrieved XForm.

See Also