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

コントロールの罫線を示すListGridLines値を取得または設定します。
構文
Public Property ListGridLines As ListGridLines
public ListGridLines ListGridLines {get; set;}

プロパティ値

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

Public Sub SetGridLineSettings()
    ' Creates the GcMaskedComboBox control.
    Dim gcMaskedComboBox1 As New GcMaskedComboBox()

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

    ' Sets the vertical lines settings.
    gcMaskedComboBox1.ListGridLines.VerticalLines.Style = LineStyle.[Single]
    gcMaskedComboBox1.ListGridLines.VerticalLines.Color = SystemColors.ControlDark
End Sub
//  Please use the following namespace
//  using System.Windows.Forms;
//  using GrapeCity.Win.Editors;

public void SetGridLineSettings()
{
    // Creates the GcMaskedComboBox control.
    GcMaskedComboBox gcMaskedComboBox1 = new GcMaskedComboBox();

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

    // Sets the vertical lines settings.
    gcMaskedComboBox1.ListGridLines.VerticalLines.Style = LineStyle.Single;
    gcMaskedComboBox1.ListGridLines.VerticalLines.Color = SystemColors.ControlDark;
}
参照

GcMaskedComboBox クラス
GcMaskedComboBox メンバ

 

 


© 2004-2015 GrapeCity inc. All rights reserved.