PdfControl.FullName Property

Gets the fully qualified name of the control.

Namespace:  BitMiracle.Docotic.Pdf
Assembly:  BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)

Syntax

C#
public string FullName { get; }
VB
Public ReadOnly Property FullName As String
	Get

Property Value

Type: String
The fully qualified name of the control.

Remarks

The fully qualified control name is not explicitly defined but is constructed from the partial control names (accessible via Name property) of the control and all of its ancestors.

For a control with no parent, the partial and fully qualified names are the same. For a control that is the child of another control, the fully qualified name is formed by appending the child control's partial name to the parent's fully qualified name, separated by a period (.)

See Also