TextBox.ScrollBars プロパティ
複数行 TextBox コントロールに表示されるスクロール バーを取得または設定します。
Public Property ScrollBars As ScrollBars
[C#]
public ScrollBars ScrollBars {get; set;}
[C++]
public: __property ScrollBars get_ScrollBars();public: __property void set_ScrollBars(ScrollBars);
[JScript]
public function get ScrollBars() : ScrollBars;public function set ScrollBars(ScrollBars);
プロパティ値
複数行 TextBox コントロールにスクロール バーを表示しないのか、水平スクロール バーと垂直スクロール バーのいずれかを表示するのか、またはこれらの両方を表示するのかを示す ScrollBars 列挙値の 1 つ。既定値は ScrollBars.None です。
例外
例外の種類 | 条件 |
---|---|
InvalidEnumArgumentException | 列挙体の有効値の範囲内にない値が、プロパティに代入されました。 |
解説
WordWrap プロパティが true に設定されている場合は、 ScrollBars プロパティの値に関係なく、水平スクロール バーは表示されません。
使用例
[Visual Basic, C#, C++] 垂直スクロール バーのある複数行 TextBox コントロールを作成する例を次に示します。この例でも、 AcceptsTab プロパティ、 AcceptsReturn プロパティ、および WordWrap プロパティを使用して、テキスト ドキュメントを作成しやすいように複数行 TextBox コントロールを設定します。
Public Sub CreateMyMultilineTextBox()
' Create an instance of a TextBox control.
Dim textBox1 As New TextBox()
' Set the Multiline property to true.
textBox1.Multiline = True
' Add vertical scroll bars to the TextBox control.
textBox1.ScrollBars = ScrollBars.Vertical
' Allow the TAB key to be entered in the TextBox control.
textBox1.AcceptsReturn = True
' Allow the TAB key to be entered in the TextBox control.
textBox1.AcceptsTab = True
' Set WordWrap to true to allow text to wrap to the next line.
textBox1.WordWrap = True
' Set the default text of the control.
textBox1.Text = "Welcome!"
End Sub
[C#]
public void CreateMyMultilineTextBox()
{
// Create an instance of a TextBox control.
TextBox textBox1 = new TextBox();
// Set the Multiline property to true.
textBox1.Multiline = true;
// Add vertical scroll bars to the TextBox control.
textBox1.ScrollBars = ScrollBars.Vertical;
// Allow the TAB key to be entered in the TextBox control.
textBox1.AcceptsReturn = true;
// Allow the TAB key to be entered in the TextBox control.
textBox1.AcceptsTab = true;
// Set WordWrap to true to allow text to wrap to the next line.
textBox1.WordWrap = true;
// Set the default text of the control.
textBox1.Text = "Welcome!";
}
[C++]
public:
void CreateMyMultilineTextBox()
{
// Create an instance of a TextBox control.
TextBox* textBox1 = new TextBox();
// Set the Multiline property to true.
textBox1->Multiline = true;
// Add vertical scroll bars to the TextBox control.
textBox1->ScrollBars = ScrollBars::Vertical;
// Allow the TAB key to be entered in the TextBox control.
textBox1->AcceptsReturn = true;
// Allow the TAB key to be entered in the TextBox control.
textBox1->AcceptsTab = true;
// Set WordWrap to true to allow text to wrap to the next line.
textBox1->WordWrap = true;
// Set the default text of the control.
textBox1->Text = S"Welcome!";
}
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET
参照
TextBox クラス | TextBox メンバ | System.Windows.Forms 名前空間 | ScrollBars