TX Text Control .NET Documentation

TextControl.ViewMode Property

Description:Gets or sets the mode in which Text Control displays its contents.

Syntax:
[C#] public ViewMode ViewMode { get; set; }
[Visual Basic] Public Property ViewMode() As ViewMode
ValueDescription
FloatingTextThe Text Control has a vertical scrollbar to enable unlimited text content. The maximum horizontal text extent is the horizontal size of the control. The values of the PageSize and PageMargins properties are ignored. Headers and footers are not displayed.

NormalThe Text Control has scrollbars and text is formatted according to the settings of the PageSize and the PageMargins properties. Headers and footers can be inserted but they are not displayed.

PageViewText is formatted like in Normal view mode, and additionally the Text Control displays the pages in 3D view with gaps and a desktop background. Headers and footers are displayed in WYSIWYG mode.

SimpleControlThe Text Control formats the text according to the horizontal and vertical extent of the control. If the control is 'full', no further text can be inserted.

See also:Control Settings, Graphical Overview.