FormEditor.GetElement

GetElement<T>(int)

Returns the element by specified index.

public T GetElement<T>(int index)
    where T : FormElement
ParameterDescription
TType of the form element
indexThe index of the element

Return Value

Returns the element.

See Also


GetElement<T>(string)

Returns the element by specified name.

public T GetElement<T>(string name)
    where T : FormElement
ParameterDescription
TType of the form element
nameThe element name

Return Value

Returns the element.

See Also