DataGridViewTextBoxColumn.CellTemplate プロパティとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > DataGridViewTextBoxColumn.CellTemplate プロパティの意味・解説 

DataGridViewTextBoxColumn.CellTemplate プロパティ

メモ : このプロパティは、.NET Framework version 2.0新しく追加されたものです。

セル外観モデルとなるテンプレート取得または設定します

名前空間: System.Windows.Forms
アセンブリ: System.Windows.Forms (system.windows.forms.dll 内)
構文構文

Public Overrides Property
 CellTemplate As DataGridViewCell
Dim instance As DataGridViewTextBoxColumn
Dim value As DataGridViewCell

value = instance.CellTemplate

instance.CellTemplate = value
public override DataGridViewCell CellTemplate { get;
 set; }
public:
virtual property DataGridViewCell^ CellTemplate {
    DataGridViewCell^ get () override;
    void set (DataGridViewCell^ value) override;
}
/** @property */
public DataGridViewCell get_CellTemplate ()

/** @property */
public void set_CellTemplate (DataGridViewCell
 value)
public override function get
 CellTemplate () : DataGridViewCell

public override function set
 CellTemplate (value : DataGridViewCell)

プロパティ
列に含まれる他のすべてのセルモデルとする DataGridViewCell。

例外例外
例外種類条件

InvalidCastException

設定されている型と DataGridViewTextBoxCell 型に互換性がありません。

解説解説

DataGridViewTextBoxColumn クラスコンストラクタは、このプロパティ新しく作成されDataGridViewTextBoxCell初期化します。

注意に関するメモ注意

セル テンプレートプロパティ変更しても、列の既存セルユーザー インターフェイス (UI) に直ち反映されることはありません。この変更は、列が再生成されたとき (列を並べ替えたり DataGridView.InvalidateColumn メソッド呼び出したりした場合など) に、初め反映されます。

使用例使用例

このプロパティ類似している DataGridViewColumn.CellTemplate プロパティ使用方法次のコード例示します次の例は「方法 : Windows フォーム DataGridView コントロールの列を操作する」で取り上げている例の一部です。

Private Sub CustomizeCellsInThirdColumn()

    Dim thirdColumn As Integer
 = 2
    Dim column As DataGridViewColumn = _
        dataGridView.Columns(thirdColumn)
    Dim cell As DataGridViewCell = _
        New DataGridViewTextBoxCell()

    cell.Style.BackColor = Color.Wheat
    column.CellTemplate = cell
End Sub
private void CustomizeCellsInThirdColumn()
{
    int thirdColumn = 2;
    DataGridViewColumn column =
        dataGridView.Columns[thirdColumn];
    DataGridViewCell cell = new DataGridViewTextBoxCell();

    cell.Style.BackColor = Color.Wheat;
    column.CellTemplate = cell;
}
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
DataGridViewTextBoxColumn クラス
DataGridViewTextBoxColumn メンバ
System.Windows.Forms 名前空間
DataGridView クラス
DataGridViewTextBoxColumn
DataGridViewCell クラス
DataGridViewTextBoxCell クラス
DataGridView.InvalidateColumn


このページでは「.NET Framework クラス ライブラリ リファレンス」からDataGridViewTextBoxColumn.CellTemplate プロパティを検索した結果を表示しています。
Weblioに収録されているすべての辞書からDataGridViewTextBoxColumn.CellTemplate プロパティを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からDataGridViewTextBoxColumn.CellTemplate プロパティ を検索

英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「DataGridViewTextBoxColumn.CellTemplate プロパティ」の関連用語

DataGridViewTextBoxColumn.CellTemplate プロパティのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



DataGridViewTextBoxColumn.CellTemplate プロパティのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2024 Microsoft.All rights reserved.

©2024 GRAS Group, Inc.RSS