Gets or sets the display color for the page background.

Syntax

public System.Windows.Media.Color PageBackColor { get; set; }
Public Property PageBackColor As System.Windows.Media.Color

Examples

The following example uses the PageBackColor property and sets its value to White.

TXTextControl.WPF.TextControlColors colors = new TXTextControl.WPF.TextControlColors();

colors.DesktopColor  =  System.Windows.Media.Colors.Black; 
colors.PageBackColor =  System.Windows.Media.Colors.White;
Dim colors As TXTextControl.WPF.TextControlColors = New TXTextControl.WPF.TextControlColors()

colors.DesktopColor  = System.Windows.Media.Colors.Black  
colors.PageBackColor = System.Windows.Media.Colors.White