DataGridColumnCollectionEditor 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
DataGrid 컨트롤의 열 컬렉션을 편집하기 위한 UI(사용자 인터페이스)를 제공합니다.
public ref class DataGridColumnCollectionEditor : System::Drawing::Design::UITypeEditor
public class DataGridColumnCollectionEditor : System.Drawing.Design.UITypeEditor
type DataGridColumnCollectionEditor = class
inherit UITypeEditor
Public Class DataGridColumnCollectionEditor
Inherits UITypeEditor
- 상속
예제
다음 코드 예제에서는 합니다 EditorAttribute 연결할 합니다 DataGridColumnCollectionEditor 클래스 및 UITypeEditor 클래스 (컬렉션 편집기의 기본 클래스)를 사용자 지정 Columns
속성입니다. 속성은에 대 한 참조를 DataGridColumnCollection 클래스입니다.
private DataGridColumnCollection columns = null;
// Associate the DataGridColumnCollectionEditor with the TestColumns.
[EditorAttribute(typeof(System.Web.UI.Design.WebControls.
DataGridColumnCollectionEditor),
typeof(UITypeEditor))]
public DataGridColumnCollection TestColumns
{
get { return columns; }
} // TestColumns
Private columns As DataGridColumnCollection
' Associate DataGridColumnCollectionEditor with the TestColumns.
<EditorAttribute( GetType( System.Web.UI.Design.WebControls. _
DataGridColumnCollectionEditor), _
GetType(UITypeEditor))> _
Public ReadOnly Property TestColumns() As DataGridColumnCollection
Get
Return columns
End Get
End Property ' TestColumns
생성자
DataGridColumnCollectionEditor() |
DataGridColumnCollectionEditor 클래스의 새 인스턴스를 초기화합니다. |
속성
IsDropDownResizable |
드롭다운 편집기를 사용자가 크기 조정할 수 있는지 여부를 나타내는 값을 가져옵니다. (다음에서 상속됨 UITypeEditor) |