The ActiveViewType property specifies the current RichEditControl view. Use the ActiveView property to access the current view and change its options (zoom factor, background color, etc.)

Example
This example demonstrates how to change the RichEditControl View using the ActiveViewType property.
C# |
richEditControl.ActiveViewType = RichEditViewType.Draft;
richEditControl.ActiveViewType = RichEditViewType.Simple;
richEditControl.ActiveViewType = RichEditViewType.PrintLayout;
|
VB |
richEditControl.ActiveViewType = RichEditViewType.Draft
richEditControl.ActiveViewType = RichEditViewType.Simple
richEditControl.ActiveViewType = RichEditViewType.PrintLayout
|