GrapeCity.Win.Pickers 名前空間 > GcFontPicker クラス : TextAlign プロパティ |
Public Property TextAlign As ContentAlignment
public ContentAlignment TextAlign {get; set;}
例外 | 解説 |
---|---|
System.ComponentModel.InvalidEnumArgumentException | 指定された値がSystem.Drawing.ContentAlignment列挙値の1つではありません。 |
次のサンプルコードは、TextAlignプロパティの使用方法を示します。このサンプルコードを実行するには、以下のコードをSystem.Windows.Forms.Formプロジェクトに追加し、ここで作成したメソッドをコンストラクターまたはフォーム上の別のメソッドから呼び出します。
private void CreateGcFontPickerWithTextAlign() { // Create an instance of GcFontPicker control. GcFontPicker gcFontPicker = new GcFontPicker(); // Initialize the Name and Location of the gcFontPicker. gcFontPicker.Name = "gcFontPicker"; gcFontPicker.Location = new Point(10, 50); gcFontPicker.Size = new Size(200, 50); gcFontPicker.SelectedFontInfo = gcFontPicker.AllFonts[Control.DefaultFont.Name]; // Set the TextAlign. gcFontPicker.TextAlign = ContentAlignment.MiddleCenter; // adds gcFontPicker to the form. this.Controls.Add(gcFontPicker); }
Private Sub CreateGcFontPickerWithTextAlign() ' Create an instance of GcFontPicker control. Dim gcFontPicker As New GcFontPicker() ' Initialize the Name and Location of the gcFontPicker. gcFontPicker.Name = "gcFontPicker" gcFontPicker.Location = New Point(10, 50) gcFontPicker.Size = New Size(200, 50) gcFontPicker.SelectedFontInfo = gcFontPicker.AllFonts(Control.DefaultFont.Name) ' Set the TextAlign. gcFontPicker.TextAlign = ContentAlignment.MiddleCenter ' adds gcFontPicker to the form. Me.Controls.Add(gcFontPicker) 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