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.
public string Name { get; set; }
Public Property Name() As String
The following example shows the Frame
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