PdfControl.Name Property

Gets or sets the control name.

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

Syntax

C#
public string Name { get; set; }
VB
Public Property Name As String
	Get
	Set

Property Value

Type: String
The control name.

Remarks

In general, all controls that are children of another control must have unique names. But there is an exceptions from this rule : all controls in a group of PdfRadioButtons usually have the same name.

Control names can not contain a period.

Please use FullName property to get a fully qualified name of the control.

See Also