AttributeTableBuilder.AddCustomAttributes 方法 (Type, String, array<Attribute )
會將屬性 (Attribute) 加入至具有指定名稱的成員。
命名空間: Microsoft.Windows.Design.Metadata
組件: Microsoft.Windows.Design.Extensibility (在 Microsoft.Windows.Design.Extensibility.dll 中)
語法
'宣告
Public Sub AddCustomAttributes ( _
ownerType As Type, _
memberName As String, _
ParamArray attributes As Attribute() _
)
public void AddCustomAttributes(
Type ownerType,
string memberName,
params Attribute[] attributes
)
public:
void AddCustomAttributes(
Type^ ownerType,
String^ memberName,
... array<Attribute^>^ attributes
)
member AddCustomAttributes :
ownerType:Type *
memberName:string *
attributes:Attribute[] -> unit
public function AddCustomAttributes(
ownerType : Type,
memberName : String,
... attributes : Attribute[]
)
參數
- ownerType
型別:System.Type
成員的擁有者型別。
- memberName
型別:System.String
要為其加入屬性 (Attribute) 的成員。
- attributes
型別:array<System.Attribute[]
要加入的屬性 (Attribute)。
例外狀況
例外狀況 | 條件 |
---|---|
ArgumentNullException | ownerType、memberName 或 attributes 為 nullNull 參照 (即 Visual Basic 中的 Nothing)。 |
備註
成員可以是屬性 (Property) 或事件。 當使用者查詢指定之屬性 (Property) 或事件的屬性 (Attribute) 時,就會視需要評估這個成員。 所支援的只有屬性 (Property) 和事件成員, 其他所有項目都會遭忽略。
範例
下列程式碼範例顯示如何將屬性 (Attribute) 加入至成員。 這個程式碼範例是 AttributeTableBuilder 類別完整範例的一部分。
' Apply the ReadOnlyAttribute to the Background property
' of the Button class.
builder.AddCustomAttributes( _
GetType(Button), _
"Background", _
New ReadOnlyAttribute(True))
// Apply the ReadOnlyAttribute to the Background property
// of the Button class.
builder.AddCustomAttributes(
typeof(Button),
"Background",
new ReadOnlyAttribute(true));
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。