GrapeCity.Win.Buttons 名前空間 > GcLabel クラス : OutlineEffect プロパティ |
Public Property OutlineEffect As OutlineEffect
public OutlineEffect OutlineEffect {get; set;}
次のサンプルコードは、OutlineEffect プロパティの使用方法と GcLabel コントロールの作成方法を示します。
private void GcLabelOutlineEffect() { // 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(230, 50); // Set OutlineEffect gcLabel1.Font = new Font("Microsoft Sans Serif", 28.25f); gcLabel1.Text = "0123456789"; gcLabel1.OutlineEffect = new Buttons.OutlineEffect(Color.Yellow, Color.Red, Buttons.OutlineStyle.Single); // Add gcLabel1 to the form this.Controls.Add(gcLabel1); }
Private Sub GcLabelOutlineEffect() ' 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(230, 50) ' Set OutlineEffect gcLabel1.Font = New Font("Microsoft Sans Serif", 28.25F) gcLabel1.Text = "0123456789" gcLabel1.OutlineEffect = New OutlineEffect(Color.Yellow, Color.Red, OutlineStyle.Single) ' 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