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

AutoShrinktrue のときに最小縮小サイズを制限するために使用される最小フォントサイズを指定します。
構文
Public Property MinFontSize As Single
public float MinFontSize {get; set;}

プロパティ値

AutoShrinktrue のときに最小縮小サイズを制限するために使用される System.Single 値。デフォルト値は 0 です。
例外
例外解説
System.ArgumentOutOfRangeException 指定された値が 0 未満です。
使用例

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

private void GcLabelMinFontSize()
{
    // 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(100, 30);

    // Set MinFontSize
    gcLabel1.AutoShrink = true;
    gcLabel1.Font = new Font("Microsoft Sans Serif", 18.25f);
    gcLabel1.ShrinkMode = GrapeCity.Win.Buttons.ShrinkMode.Both;
    gcLabel1.MinFontSize = 10;
    gcLabel1.WrapMode = Common.TextWrapMode.CrLfWrap;
    gcLabel1.Text = "0123456789\r\n0123456789";

    // Add gcLabel1 to the form
    this.Controls.Add(gcLabel1);
}
Private Sub GcLabelMinFontSize()
    ' 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(100, 30)

    ' Set MinFontSize
    gcLabel1.AutoShrink = True
    gcLabel1.Font = New Font("Microsoft Sans Serif", 18.25F)
    gcLabel1.ShrinkMode = ShrinkMode.Both
    gcLabel1.MinFontSize = 10
    gcLabel1.WrapMode = Common.TextWrapMode.CrLfWrap
    gcLabel1.Text = "0123456789" & vbCr & vbLf & "0123456789"

    ' 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