DataGridCell コンストラクタとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > DataGridCell コンストラクタの意味・解説 

DataGridCell コンストラクタ

DataGridCell クラス新しインスタンス初期化します。

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

Dim r As Integer
Dim c As Integer

Dim instance As New DataGridCell(r,
 c)
public DataGridCell (
    int r,
    int c
)
public:
DataGridCell (
    int r, 
    int c
)
public DataGridCell (
    int r, 
    int c
)
public function DataGridCell (
    r : int, 
    c : int
)

パラメータ

r

System.Windows.Forms.DataGrid の行の番号

c

System.Windows.Forms.DataGrid の列の番号

使用例使用例

DataGridCell作成し、その新しインスタンスSystem.Windows.Forms.DataGrid コントロールCurrentCell設定する例を次に示します

Private Sub SetCell()
   ' Set the focus to the cell specified by the DataGridCell.
   Dim dc As DataGridCell
   dc.RowNumber = 1
   dc.ColumnNumber = 1
   DataGrid1.CurrentCell = dc
End Sub

private void SetCell()
{
   // Set the focus to the cell specified by the DataGridCell.
   DataGridCell dc = new DataGridCell();
   dc.RowNumber = 1;
   dc.ColumnNumber = 1;
   dataGrid1.CurrentCell = dc;
}

private:
   void SetCell()
   {
      // Set the focus to the cell specified by the DataGridCell.
      DataGridCell dc;
      dc.RowNumber = 1;
      dc.ColumnNumber = 1;
      dataGrid1->CurrentCell = dc;
   }
private void SetCell()
{
    // Set the focus to the cell specified by the DataGridCell.
    DataGridCell dc = new DataGridCell();
    dc.set_RowNumber(1);
    dc.set_ColumnNumber(1);
    dataGrid1.set_CurrentCell(dc);
} //SetCell
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
DataGridCell 構造体
DataGridCell メンバ
System.Windows.Forms 名前空間
DataGrid.CurrentCell プロパティ
DataColumn
DataGrid クラス
DataRow
ColumnNumber
RowNumber


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

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

辞書ショートカット

すべての辞書の索引

「DataGridCell コンストラクタ」の関連用語

DataGridCell コンストラクタのお隣キーワード
検索ランキング

   

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



DataGridCell コンストラクタのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

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

©2025 GRAS Group, Inc.RSS