PowerTools PlusPak for Windows Forms 8.0J
TextArcMode プロパティ
使用例 

テキストの表示に使用される円弧の形状を決定する値を取得または設定します。
構文
Public Property TextArcMode As TextArcMode
public TextArcMode TextArcMode {get; set;}

プロパティ値

TextArcMode 値の 1 つ。デフォルト値は TextArcMode.None です。
例外
例外解説
System.ComponentModel.InvalidEnumArgumentException指定された値が TextArcMode 値の 1 つではありません。
解説
TextOrientationGrapeCity.Win.Common.TextOrientation.NotSet でないときに TextArcMode を設定することはできません。GcLabel が円弧モードのとき、次のプロパティは常に無効になります。WrapModeCharSpacingTextHAlignTextVAlignAutoShrinkShrinkModeEllipsisMode
使用例

次のサンプルコードは、TextArcMode プロパティの使用方法と GcLabel コントロールの作成方法を示します。

private void GcLabelTextArcMode()
{
    // Create a instance of GcLabel.
    GrapeCity.Win.Buttons.GcLabel gcLabel1 = new GrapeCity.Win.Buttons.GcLabel();

    // Initialize the Name, Location and Size of GcLabel
    gcLabel1.Name = "gcLabel1";
    gcLabel1.Location = new System.Drawing.Point(0, 0);
    gcLabel1.Size = new System.Drawing.Size(180, 80);

    // Set TextArcMode
    gcLabel1.Text = "0123456789";
    gcLabel1.TextArcMode = GrapeCity.Win.Buttons.TextArcMode.ArchUp;

    // Add gcLabel1 to the form
    this.Controls.Add(gcLabel1);
}
Private Sub GcLabelTextArcMode()
    ' Create a instance of GcLabel.
    Dim gcLabel1 As New GcLabel()

    ' Initialize the Name, Location and Size of GcLabel
    gcLabel1.Name = "gcLabel1"
    gcLabel1.Location = New System.Drawing.Point(0, 0)
    gcLabel1.Size = New System.Drawing.Size(180, 80)

    ' Set TextArcMode
    gcLabel1.Text = "0123456789"
    gcLabel1.TextArcMode = TextArcMode.ArchUp

    ' Add gcLabel1 to the form
    Me.Controls.Add(gcLabel1)
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

参照

GcLabel クラス
GcLabel メンバ

Send Feedback