GrapeCity CalendarGrid for Windows Forms 2.0J > CalendarGridの使い方 > InputManCell > GcTimeSpan型セル > 書式を設定する(CalendarGcTimeSpanCellType) |
AcceptsCrLfの値 | 説明 |
---|---|
NoControl |
改行コードはそのままでコピー、貼り付けを行います。従来のInputManのタイムスパンコントロールと同じ動作です。 |
Filter |
全ての改行コードを削除しコピー、貼り付けを行います。 |
Cut |
最初の改行コード以降の文字列を削除します。標準コントロールと同じ動作です。 |
CalendarGcTimeSpanCellType.FieldsプロパティまたはGcTimeSpan.Fieldsプロパティのコレクションを通して特定のフィールドにアクセスできます。
フィールドコレクション内の特定のフィールドにアクセスする場合、次のいずれかの方法を使うことができます。
コレクションのインデックスがわかっている場合は、インデックスを使ってフィールドを取得することができます。
次のサンプルはインデックスを使ってフィールドを取得する例です。ここではCalendarGcTimeSpanCellTypeの3番目のフィールドを取得する例です。
Dim cell As InputManCell.CalendarGcTimeSpanCellType = CType(GcCalendarGrid1.Content(DateTime.Today)(1, 0).CellType, InputManCell.CalendarGcTimeSpanCellType) Dim myField As InputManCell.TimeSpanField = cell.Fields(2)
InputManCell.CalendarGcTimeSpanCellType cell =
(gcCalendarGrid1[DateTime.Today][1, 0].CellType as InputManCell.CalendarGcTimeSpanCellType);
InputManCell.TimeSpanField myField = (InputManCell.TimeSpanField)cell.Fields[2];
また、インデックスを使わず、設定したキー(文字列)を使って特定のフィールドにアクセスすることもできます。
キーは、各フィールドのName プロパティにキーとして文字列を設定します。
次のサンプルはキーを使ってフィールドを取得する例です。ここではCalendarGcTimeSpanCellTypeの特定のフィールドのName プロパティに予め"Key1"という文字列が設定されていることを前提にしています。
Dim cell As InputManCell.CalendarGcTimeSpanCellType = CType(GcCalendarGrid1.Content(DateTime.Today)(1, 0).CellType, InputManCell.CalendarGcTimeSpanCellType) Dim myField As InputManCell.TimeSpanField = cell.Fields("Key1")
InputManCell.CalendarGcTimeSpanCellType cell = (gcCalendarGrid1[DateTime.Today][1, 0].CellType as InputManCell.CalendarGcTimeSpanCellType); InputManCell.TimeSpanField myField = (InputManCell.TimeSpanField)cell.Fields["Key1"];