TableRowsCollectionEditor クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
テーブルの行を編集するためのユーザー インターフェイスを提供します。
public ref class TableRowsCollectionEditor : System::ComponentModel::Design::CollectionEditor
public class TableRowsCollectionEditor : System.ComponentModel.Design.CollectionEditor
type TableRowsCollectionEditor = class
inherit CollectionEditor
Public Class TableRowsCollectionEditor
Inherits CollectionEditor
- 継承
例
次のコード例では、 をEditorAttribute使用して、 クラスと UITypeEditor クラス (コレクション エディターの基底クラス) をカスタム TestRows
プロパティに関連付けますTableRowsCollectionEditor
。
private TableRowCollection rows = null;
// Associate the TableRowsCollectionEditor with the TestRows.
[EditorAttribute(typeof(System.Web.UI.Design.WebControls.
TableRowsCollectionEditor),
typeof(UITypeEditor))]
public TableRowCollection TestRows
{
get { return rows; }
} // TestRows
Private rows As TableRowCollection
' Associate the TableRowsCollectionEditor with the TestRows.
<EditorAttribute( GetType(System.Web.UI.Design.WebControls. _
TableRowsCollectionEditor), _
GetType(UITypeEditor))> _
Public ReadOnly Property TestRows() As TableRowCollection
Get
Return rows
End Get
End Property ' TestRows
コンストラクター
TableRowsCollectionEditor(Type) |
TableRowsCollectionEditor クラスの新しいインスタンスを初期化します。 |
プロパティ
CollectionItemType |
コレクション内の各項目のデータ型を取得します。 (継承元 CollectionEditor) |
CollectionType |
コレクション オブジェクトのデータ型を取得します。 (継承元 CollectionEditor) |
Context |
現在のコンテキストを示す型記述子を取得します。 (継承元 CollectionEditor) |
HelpTopic |
エディターのダイアログ ボックスの [ヘルプ] ボタンまたは F1 キーが押されたときにヘルプ トピックまたはトピック リストを表示するためのヘルプ キーワードを取得します。 (継承元 CollectionEditor) |
IsDropDownResizable |
ユーザーがドロップダウン エディターのサイズを変更できるかどうかを示す値を取得します。 (継承元 UITypeEditor) |
NewItemTypes |
コレクションに対して作成できる項目の有効な型を取得します。 (継承元 CollectionEditor) |
メソッド
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET