GrapeCity CalendarGrid for Windows Forms 2.0J
Fields プロパティ (CalendarGcMaskCellType)
使用例 

MaskFieldCollection のフィールドを取得します。
構文
Public ReadOnly Property Fields As MaskFieldCollection
public MaskFieldCollection Fields {get;}

プロパティ値

CalendarGcMaskCellType 内の項目を表す FieldCollection
使用例
次のサンプルコードは、フィールドを追加する方法を示します。
private void Form1_Load(object sender, EventArgs e)
{
    CalendarGcMaskCellType gcMaskCell1 = new CalendarGcMaskCellType();
    SetGcMaskCellFields(gcMaskCell1);

    CalendarTemplate template1 = CalendarTemplate.CreateDefaultTemplate();
    template1.Content[1, 0].CellType = gcMaskCell1;
    template1.Content[2, 0].CellType = gcMaskCell1.Clone();

    gcCalendarGrid1.Template = template1;
}
Private Sub Form1_Load(sender As Object, e As EventArgs)
    Dim gcMaskCell1 As New CalendarGcMaskCellType()
    SetGcMaskCellFields(gcMaskCell1)

    Dim template1 As CalendarTemplate = CalendarTemplate.CreateDefaultTemplate()
    template1.Content(1, 0).CellType = gcMaskCell1
    template1.Content(2, 0).CellType = gcMaskCell1.Clone()

    gcCalendarGrid1.Template = template1
End Sub
参照

CalendarGcMaskCellType クラス
CalendarGcMaskCellType メンバ

 

 


c 2008 GrapeCity inc. All rights reserved.