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

罫線のスタイルを取得または設定します。
構文
Public Property ListGridLines As ListGridLines
public ListGridLines ListGridLines {get; set;}

プロパティ値

罫線のスタイルを表すListGridLinesオブジェクト。
解説
このプロパティの値は、罫線の外観を決定します。これには、LineLine.ColorLine.Styleが含まれます。
使用例
罫線のスタイルを設定した GcComboBox コントロールを作成するコード例を次に示します。
//  Please use the following namespace
//  using System.Windows.Forms;
//  using GrapeCity.Win.Editors;

public void SetGridLineSettings()
{
    // Creates the GcComboBox control.
    GcComboBox gcComboBox1 = new GcComboBox();

    // Sets the horizontal lines settings.
    gcComboBox1.ListGridLines.HorizontalLines.Style = LineStyle.Hair;
    gcComboBox1.ListGridLines.HorizontalLines.Color = SystemColors.ControlDark;

    // Sets the vertical lines settings.
    gcComboBox1.ListGridLines.VerticalLines.Style = LineStyle.Single;
    gcComboBox1.ListGridLines.VerticalLines.Color = SystemColors.ControlDark;
}
'  Please use the following namespace
'  Imports System.Windows.Forms;
'  Imports GrapeCity.Win.Editors;

Public Sub SetGridLineSettings()
    ' Creates the GcComboBox control.
    Dim gcComboBox1 As New GcComboBox()

    ' Sets the horizontal lines settings.
    gcComboBox1.ListGridLines.HorizontalLines.Style = LineStyle.Hair
    gcComboBox1.ListGridLines.HorizontalLines.Color = SystemColors.ControlDark

    ' Sets the vertical lines settings.
    gcComboBox1.ListGridLines.VerticalLines.Style = LineStyle.[Single]
    gcComboBox1.ListGridLines.VerticalLines.Color = SystemColors.ControlDark
End Sub
参照

GcComboBox クラス
GcComboBox メンバ

 

 


© 2004-2015 GrapeCity inc. All rights reserved.