Remarks
The property's default value is Frame
The property returns its default value when the text selection contains multiple paragraphs with mixed style. The Selection.
Gets or sets the style of the paragraph's frame.
public FrameStyle FrameStyle { get; set; }
Public Property FrameStyle() As FrameStyle
Member | Description |
---|---|
Single | The paragraph's frame is drawn with a single line. |
Double | The paragraph's frame is drawn with a doubled line. |
The following example uses the Frame
TXTextControl.ParagraphFormat format = new TXTextControl.ParagraphFormat();
format.Alignment = TXTextControl.HorizontalAlignment.Center;
format.Frame = TXTextControl.Frame.Box;
format.FrameStyle = TXTextControl.FrameStyle.Double;
textControl1.Selection.ParagraphFormat = format;
Dim format As TXTextControl.ParagraphFormat = New TXTextControl.ParagraphFormat()
format.Alignment = TXTextControl.HorizontalAlignment.Center
format.Frame = TXTextControl.Frame.Box
format.FrameStyle = TXTextControl.FrameStyle.Double
TextControl1.Selection.ParagraphFormat = format
The property's default value is Frame
The property returns its default value when the text selection contains multiple paragraphs with mixed style. The Selection.