ActiveReports3 Request technical support
Font Property
See Also 


Gets or returns the font object used to print the control text. For design time use only.

Syntax

Visual Basic (Declaration) 
Public Property Font As Font
Visual Basic (Usage)Copy Code
Dim instance As RichTextBox
Dim value As Font
 
instance.Font = value
 
value = instance.Font
C# 
public Font Font {get; set;}

Return Value

Current System.Drawing.Font object used to render the control's text.

Remarks

The Font property is for design-time use only. To set the font at run time, use the SelectionFont property.

See Also