PowerTools InputMan for Windows Forms 8.0J
WrapMode プロパティ
使用例 

複数行に設定したコントロールで自動的に次の行に折り返す方式を取得または設定します。
構文
Public Property WrapMode As WrapMode
public WrapMode WrapMode {get; set;}

プロパティ値

WrapMode 列挙体。 既定値はWordWrapです。
解説

WrapMode プロパティがNoWrapに設定されている場合は、 ScrollBars プロパティの値に関係なく、 水平スクロールバーは表示されません。

また、ContentAlignment プロパティが BottomCenter、BottomRight、MiddleCenter、MiddleRight、TopCenter、TopRightの いずれかに設定されている場合、WrapMode プロパティの設定にかかわらずワードラップが有効になります。

このプロパティはMultiline プロパティがTrueに設定されている場合だけ有効です。

使用例
垂直のスクロールバーを持つ GcTextBox コントロールを作成するコード例を次に示します。この例では他に AcceptsTabAcceptsReturn、また WrapMode プロパティを使用して、複数行の GcTextBox コントロールを作成しています。
//  Please use the following namespace
//  using System.Windows.Forms;
//  using GrapeCity.Win.Editors;

public void CreateMultilineGcTextBox()
{
    // Create an instance of a GcTextBox control.
    GcTextBox gcTextBox1 = new GcTextBox();

    // Set the Multiline property to true.
    gcTextBox1.Multiline = true;
    // Add vertical scroll bars to the GcTextBox control.
    gcTextBox1.ScrollBars = ScrollBars.Vertical;
    // Allow the RETURN key in the GcTextBox control.
    gcTextBox1.AcceptsReturn = true;
    // Allow the TAB key to be entered in the GcTextBox control.
    gcTextBox1.AcceptsTab = true;
    // Set WrapMode to WrapMode.WordWrap to allow text to wrap to the next line.
    gcTextBox1.WrapMode = GrapeCity.Win.Editors.WrapMode.WordWrap;
    // Set the default text of the control.
    gcTextBox1.Text = "Power Tools!" + Environment.NewLine + "This is the second line.";
}
'  Please use the following namespace
'  Imports System.Windows.Forms
'  Imports GrapeCity.Win.Editors

Public Sub CreateGcMultilineTextBox()
    ' Create an instance of a GcTextBox control.
    Dim gcTextBox1 As New GcTextBox()

    ' Set the Multiline property to true.
    gcTextBox1.Multiline = True
    ' Add vertical scroll bars to the GcTextBox control.
    gcTextBox1.ScrollBars = ScrollBars.Vertical
    ' Allow the RETURN key in the GcTextBox control.
    gcTextBox1.AcceptsReturn = True
    ' Allow the TAB key to be entered in the GcTextBox control.
    gcTextBox1.AcceptsTab = True
    ' Set WrapMode to WrapMode.WordWrap to allow text to wrap to the next line.
    gcTextBox1.WrapMode = GrapeCity.Win.Editors.WrapMode.WordWrap
    ' Set the default text of the control.
    gcTextBox1.Text = "Power Tools!" + Environment.NewLine + "This is the second line."
End Sub
参照

GcTextBox クラス
GcTextBox メンバ
Multiline プロパティ
AcceptsReturn プロパティ
AcceptsTab プロパティ
ScrollBars プロパティ

 

 


© 2004-2015 GrapeCity inc. All rights reserved.