PowerTools PlusPak for Windows Forms 8.0J
TextAlign プロパティ (GcColorPicker)
使用例 

GcColorPickerコントロールのテキスト部分でのテキストの配置を取得または設定します。
構文
Public Property TextAlign As ContentAlignment
public ContentAlignment TextAlign {get; set;}

プロパティ値

System.Drawing.ContentAlignment値の1つ。デフォルトはSystem.Drawing.ContentAlignment.MiddleLeftです。
例外
例外解説
System.ComponentModel.InvalidEnumArgumentException指定された値がSystem.Drawing.ContentAlignment列挙値の1つではありません。
解説
このプロパティを使用して、GcColorPickerコントロールのテキスト部分に表示されるテキストの配置を設定できます。
使用例

次のサンプルコードは、TextAlignプロパティの使用方法を示します。このサンプルコードを実行するには、以下のコードをSystem.Windows.Forms.Formプロジェクトに追加し、ここで作成したメソッドをコンストラクターまたはフォーム上の別のメソッドから呼び出します。

private void CreateGcColorPickerWithTextAlign()
{
    // Create an instance of GcColorPicker control.
    GcColorPicker gcColorPicker = new GcColorPicker();

    // Initialize the Name and Location of the gcColorPicker.
    gcColorPicker.Name = "gcColorPicker";
    gcColorPicker.Location = new Point(10, 50);
    gcColorPicker.Size = new Size(200, 100);

    // Set the TextAlign.
    gcColorPicker.TextAlign = ContentAlignment.MiddleCenter;

    // adds gcColorPicker to the form.
    this.Controls.Add(gcColorPicker);
}
Private Sub CreateGcColorPickerWithTextAlign()
    ' Create an instance of GcColorPicker control.
    Dim gcColorPicker As New GcColorPicker()

    ' Initialize the Name and Location of the gcColorPicker.
    gcColorPicker.Name = "gcColorPicker"
    gcColorPicker.Location = New Point(10, 50)
    gcColorPicker.Size = New Size(200, 100)

    ' Set the TextAlign.
    gcColorPicker.TextAlign = ContentAlignment.MiddleCenter

    ' adds gcColorPicker to the form.
    Me.Controls.Add(gcColorPicker)
End Sub
プラットフォーム

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

参照

GcColorPicker クラス
GcColorPicker メンバ
System.Drawing.ContentAlignment
System.Drawing.ContentAlignment

Send Feedback