Gets or sets a name for the frame. An empty string indicates that the frame has no name. An empty string can also be used to delete a previously set name.

Introduced: 15.1.

Syntax

public string Name { get; set; }
Public Property Name() As String

Examples

The following example shows the FrameBase class with three of its properties. The property 'Name' is used to set the name of the frame to "points".

TXTextControl.FrameBase frameBase = new TXTextControl.FrameBase();

frameBase.Name      = "points";
frameBase.Sizeable  = true;
frameBase.Alignment = TXTextControl.HorizontalAlignment.Left;
Dim frameBase As TXTextControl.FrameBase = New TXTextControl.FrameBase()

frameBase.Name      = "points"
frameBase.Sizeable  = True
frameBase.Alignment = TXTextControl.HorizontalAlignment.Left