PowerTools InputMan for Windows Forms 8.0J
FlatStyle プロパティ (GcRichTextBox)
使用例 

コントロールのフラットスタイルを取得または設定します。
構文
Public Property FlatStyle As FlatStyleEx
public FlatStyleEx FlatStyle {get; set;}

プロパティ値

コントロールのフラットスタイルを指定するFlatStyleEx列挙体。 既定値はStandardです。
解説
FlatStyle プロパティは、コントロールの表示を取得または設定する場合に使用します。
使用例
外観を設定したGcRichTextBox コントロールを作成するコード例を次に示します。
//  Please use the following namespace
//  using System.Windows.Forms;
//  using GrapeCity.Win.Editors;

public void SetFlatStyleSettings()
{
    // Create an instance of a GcRichTextBox control.
    GcRichTextBox gcRichTextBox1 = new GcRichTextBox();

    // Sets the FlatStyle to the Office2007Blue. And the appearance of the border will change.
    gcRichTextBox1.FlatStyle = FlatStyleEx.Office2007Blue;
}
'  Please use the following namespace
'  Imports System.Windows.Forms;
'  Imports GrapeCity.Win.Editors;

Public Sub SetFlatStyleSettings()
    ' Create an instance of a GcRichTextBox control.
    Dim gcRichTextBox1 As New GcRichTextBox()

    ' Sets the FlatStyle to the Office2007Blue. And the appearance of the border will change.
    gcRichTextBox1.FlatStyle = FlatStyleEx.Office2007Blue
End Sub
参照

GcRichTextBox クラス
GcRichTextBox メンバ

 

 


© 2004-2015 GrapeCity inc. All rights reserved.