PropertyTabAttribute.InitializeArrays 메서드

정의

특성을 초기화합니다.

오버로드

InitializeArrays(String[], PropertyTabScope[])

지정된 탭 클래스 이름 및 탭 범위 배열을 사용하여 특성을 초기화합니다.

InitializeArrays(Type[], PropertyTabScope[])

지정된 탭 클래스 이름 및 탭 범위 배열을 사용하여 특성을 초기화합니다.

InitializeArrays(String[], PropertyTabScope[])

Source:
PropertyTabAttribute.cs
Source:
PropertyTabAttribute.cs
Source:
PropertyTabAttribute.cs

지정된 탭 클래스 이름 및 탭 범위 배열을 사용하여 특성을 초기화합니다.

protected:
 void InitializeArrays(cli::array <System::String ^> ^ tabClassNames, cli::array <System::ComponentModel::PropertyTabScope> ^ tabScopes);
protected void InitializeArrays (string[] tabClassNames, System.ComponentModel.PropertyTabScope[] tabScopes);
protected void InitializeArrays (string[]? tabClassNames, System.ComponentModel.PropertyTabScope[]? tabScopes);
member this.InitializeArrays : string[] * System.ComponentModel.PropertyTabScope[] -> unit
Protected Sub InitializeArrays (tabClassNames As String(), tabScopes As PropertyTabScope())

매개 변수

tabClassNames
String[]

속성 창에서 탭에 대해 만들 형식의 정규화된 형식 이름 배열입니다.

tabScopes
PropertyTabScope[]

각 탭의 범위입니다. 범위가 Component이면 해당 PropertyTabAttribute가 포함된 구성 요소에 대해서만 탭이 표시됩니다. 범위가 Document이면 해당 문서의 모든 구성 요소에 대해 탭이 표시됩니다.

예외

tabScopes에 있는 하나 이상의 값이 Document 또는 Component가 아닌 경우

또는

tabClassNamestabScopes 배열의 길이가 다른 경우

또는

tabClassNames 또는 tabScopesnull인 경우

설명

InitializeArrays 에서는 이 PropertyTabAttribute 가 지정하는 탭 클래스의 형식을 설정하는 데 사용할 수 있는 유틸리티 함수를 제공합니다.

적용 대상

InitializeArrays(Type[], PropertyTabScope[])

Source:
PropertyTabAttribute.cs
Source:
PropertyTabAttribute.cs
Source:
PropertyTabAttribute.cs

지정된 탭 클래스 이름 및 탭 범위 배열을 사용하여 특성을 초기화합니다.

protected:
 void InitializeArrays(cli::array <Type ^> ^ tabClasses, cli::array <System::ComponentModel::PropertyTabScope> ^ tabScopes);
protected void InitializeArrays (Type[] tabClasses, System.ComponentModel.PropertyTabScope[] tabScopes);
protected void InitializeArrays (Type[]? tabClasses, System.ComponentModel.PropertyTabScope[]? tabScopes);
member this.InitializeArrays : Type[] * System.ComponentModel.PropertyTabScope[] -> unit
Protected Sub InitializeArrays (tabClasses As Type(), tabScopes As PropertyTabScope())

매개 변수

tabClasses
Type[]

만들 탭 형식입니다.

tabScopes
PropertyTabScope[]

각 탭의 범위입니다. 범위가 Component이면 해당 PropertyTabAttribute가 포함된 구성 요소에 대해서만 탭이 표시됩니다. 범위가 Document이면 해당 문서의 모든 구성 요소에 대해 탭이 표시됩니다.

예외

tabScopes에 있는 하나 이상의 값이 Document 또는 Component가 아닌 경우

또는

tabClassNamestabScopes 배열의 길이가 다른 경우

또는

tabClassNames 또는 tabScopesnull인 경우

설명

InitializeArrays 에서는 이 PropertyTabAttribute 가 지정하는 탭 클래스의 형식을 설정하는 데 사용할 수 있는 유틸리티 함수를 제공합니다.

적용 대상