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