PowerTools PlusPak for Windows Forms 8.0J
TextAlignChanged イベント (GcColorPicker)
使用例 

TextAlignプロパティの値が変更されたときに発生します。
構文
Public Event TextAlignChanged As EventHandler
public event EventHandler TextAlignChanged
使用例

次のサンプルコードは、このメンバの使用方法を示します。この例では、TextAlignChangedイベントが発生するとイベントハンドラによってそれが報告されます。これにより、イベントがいつ発生するかがわかり、イベントハンドラをデバッグに利用できます。複数のイベントまたは繰り返し発生するイベントを報告する場合は、MessageBox.ShowConsole.WriteLineに置き換えるか、複数行のSystem.Windows.Forms.TextBoxにメッセージを追記してください。

このサンプルコードを実行するには、System.Windows.Forms.Formプロジェクトを作成し、GcColorPickerのインスタンスを追加して、以下のコードをプロジェクトに貼り付けます。そして、このイベントハンドラをTextAlignChangedイベントに関連付けます。

private void gcColorPicker_TextAlignChanged(object sender, EventArgs e)
{
    MessageBox.Show("You are in the GcColorPicker.TextAlignChanged event.");
}
Private Sub gcColorPicker_TextAlignChanged(ByVal sender As Object, ByVal e As EventArgs)
    MessageBox.Show("You are in the GcColorPicker.TextAlignChanged event.")
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 メンバ
OnTextAlignChanged メソッド
OnTextAlignChanged メソッド

Send Feedback