MergablePropertyAttribute.AllowMerge プロパティとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > MergablePropertyAttribute.AllowMerge プロパティの意味・解説 

MergablePropertyAttribute.AllowMerge プロパティ

[プロパティ] ウィンドウ内で、プロパティ別のオブジェクト属すプロパティ組み合わせることができるかどうかを示す値を取得します

名前空間: System.ComponentModel
アセンブリ: System (system.dll 内)
構文構文

使用例使用例

MyProperty組み合わせることができるプロパティかどうか確認する例を次に示します最初に次の方法MyProperty属性取得します

次にmyAttribute を AttributeCollection にある MergablePropertyAttribute の値に設定しプロパティ組み合わせることができるかどうか確認します

' Gets the attributes for the property.
Dim attributes As AttributeCollection = _
   TypeDescriptor.GetProperties(Me)("MyPropertyProperty").Attributes
       
' Checks to see if the property is bindable.
Dim myAttribute As MergablePropertyAttribute
 = _
   CType(attributes(GetType(MergablePropertyAttribute)), _
   MergablePropertyAttribute)
If myAttribute.AllowMerge Then
    ' Insert code here.
End If

// Gets the attributes for the property.
AttributeCollection attributes = 
   TypeDescriptor.GetProperties(this)["MyPropertyProperty"].Attributes;

// Checks to see if the property is bindable.
MergablePropertyAttribute myAttribute = (MergablePropertyAttribute)attributes[typeof(MergablePropertyAttribute)];
if(myAttribute.AllowMerge) {
   // Insert code here.
}

// Gets the attributes for the property.
AttributeCollection^ attributes = TypeDescriptor::GetProperties( this
 )[ "MyPropertyProperty" ]->Attributes;

// Checks to see if the property is bindable.
MergablePropertyAttribute^ myAttribute = dynamic_cast<MergablePropertyAttribute^>(attributes[
 MergablePropertyAttribute::typeid ]);
if ( myAttribute->AllowMerge )
{
   // Insert code here.
}
// Gets the attributes for the property.
AttributeCollection attributes = 
    TypeDescriptor.GetProperties(this).get_Item
    ("MyPropertyProperty").get_Attributes();

// Checks to see if the property is bindable.
MergablePropertyAttribute myAttribute = 
    ((MergablePropertyAttribute)(attributes.get_Item
    (MergablePropertyAttribute.class.ToType())));

if (myAttribute.get_AllowMerge()) {
    // Insert code here.
}
// Gets the attributes for the property.
var attributes : AttributeCollection = TypeDescriptor.GetProperties(this)["MyPropertyProperty"].Attributes
       
// Checks to see if the property is bindable.
var myAttribute : MergablePropertyAttribute = MergablePropertyAttribute(attributes(MergablePropertyAttribute))
if(myAttribute.AllowMerge){
  // Insert code here.
}

プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
MergablePropertyAttribute クラス
MergablePropertyAttribute メンバ
System.ComponentModel 名前空間
MergablePropertyAttribute クラス
Attribute
PropertyDescriptor
AttributeCollection クラス
PropertyDescriptorCollection


このページでは「.NET Framework クラス ライブラリ リファレンス」からMergablePropertyAttribute.AllowMerge プロパティを検索した結果を表示しています。
Weblioに収録されているすべての辞書からMergablePropertyAttribute.AllowMerge プロパティを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からMergablePropertyAttribute.AllowMerge プロパティ を検索

英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「MergablePropertyAttribute.AllowMerge プロパティ」の関連用語

MergablePropertyAttribute.AllowMerge プロパティのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



MergablePropertyAttribute.AllowMerge プロパティのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS