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; }

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;