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

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

LocalizableAttribute.IsLocalizable プロパティ

プロパティローカライズする必要があるかどうかを示す値を取得します

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

Dim instance As LocalizableAttribute
Dim value As Boolean

value = instance.IsLocalizable
public bool IsLocalizable { get;
 }
public:
property bool IsLocalizable {
    bool get ();
}
/** @property */
public boolean get_IsLocalizable ()

プロパティ
プロパティローカライズする必要がある場合trueそれ以外場合false

使用例使用例

MyProperty の LocalizableAttribute の値を確認する方法の例を次に示します最初にオブジェクトすべてのプロパティ保持する PropertyDescriptorCollection を取得します次にPropertyDescriptorCollection から MyProperty取得します。そして、このプロパティ属性返し、その属性属性変数保存します

最後にmyAttribute を AttributeCollection にある LocalizableAttribute の値に設定しプロパティローカライズする必要があるかどうか確認します

' Gets the attributes for the property.
Dim attributes As AttributeCollection = _
   TypeDescriptor.GetProperties(Me)("MyProperty").Attributes
       
' Checks to see if the property needs to be localized.
Dim myAttribute As LocalizableAttribute = _
   CType(attributes(GetType(LocalizableAttribute)), LocalizableAttribute)
   
If myAttribute.IsLocalizable Then
     ' Insert code here.
End If

// Gets the attributes for the property.
 AttributeCollection attributes = 
    TypeDescriptor.GetProperties(this)["MyProperty"].Attributes;
 
 // Checks to see if the property needs to be localized.
 LocalizableAttribute myAttribute = 
    (LocalizableAttribute)attributes[typeof(LocalizableAttribute)];
 if(myAttribute.IsLocalizable) {
    // Insert code here.
 }
 
// Gets the attributes for the property.
AttributeCollection^ attributes = TypeDescriptor::GetProperties( this
 )[ "MyProperty" ]->Attributes;

// Checks to see if the property needs to be localized.
LocalizableAttribute^ myAttribute = dynamic_cast<LocalizableAttribute^>(attributes[
 LocalizableAttribute::typeid ]);
if ( myAttribute->IsLocalizable )
{
   // Insert code here.
}
// Gets the attributes for the property.
AttributeCollection attributes = TypeDescriptor.
GetProperties(this).get_Item("MyProperty").get_Attributes();

// Checks to see if the property needs to be localized.
LocalizableAttribute myAttribute = ((LocalizableAttribute)
    (attributes.get_Item(LocalizableAttribute.class.ToType())));
if (myAttribute.get_IsLocalizable()) {
    // Insert code here.
}
// Gets the attributes for the property.
var attributes : AttributeCollection = TypeDescriptor.GetProperties(this)["MyProperty"].Attributes
       
// Checks to see if the property needs to be localized.
var myAttribute : LocalizableAttribute = LocalizableAttribute(attributes(LocalizableAttribute))
   
if(myAttribute.IsLocalizable){
     // Insert code here.
}

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


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

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

辞書ショートカット

すべての辞書の索引

「LocalizableAttribute.IsLocalizable プロパティ」の関連用語

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

   

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



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

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

©2025 GRAS Group, Inc.RSS