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 연결할 합니다 TableRowsCollectionEditor
클래스 및 UITypeEditor 클래스 (컬렉션 편집기의 기본 클래스)를 사용자 지정 TestRows
속성입니다.
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) |