Édition

Partage via


RichTextBoxScrollBars Enum

Definition

Specifies the type of scroll bars to display in a RichTextBox control.

public enum class RichTextBoxScrollBars
public enum RichTextBoxScrollBars
type RichTextBoxScrollBars = 
Public Enum RichTextBoxScrollBars
Inheritance
RichTextBoxScrollBars

Fields

None 0

No scroll bars are displayed.

Horizontal 1

Display a horizontal scroll bar only when text is longer than the width of the control.

Vertical 2

Display a vertical scroll bar only when text is longer than the height of the control.

Both 3

Display both a horizontal and a vertical scroll bar when needed.

ForcedHorizontal 17

Always display a horizontal scroll bar.

ForcedVertical 18

Always display a vertical scroll bar.

ForcedBoth 19

Always display both a horizontal and a vertical scroll bar.

Remarks

Use the members of this enumeration to set the value of the ScrollBars property of the RichTextBox control.

Applies to

See also