LocalizableAttribute コンストラクタとは? わかりやすく解説

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

LocalizableAttribute コンストラクタ

LocalizableAttribute クラス新しインスタンス初期化します。

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

Public Sub New ( _
    isLocalizable As Boolean _
)
Dim isLocalizable As Boolean

Dim instance As New LocalizableAttribute(isLocalizable)
public LocalizableAttribute (
    bool isLocalizable
)
public:
LocalizableAttribute (
    bool isLocalizable
)
public LocalizableAttribute (
    boolean isLocalizable
)
public function LocalizableAttribute (
    isLocalizable : boolean
)

パラメータ

isLocalizable

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

使用例使用例

プロパティローカライズする必要があるとしてマークする例を次に示します。このコードは、新しLocalizableAttribute作成し、その値を LocalizableAttribute.Yes に設定してから、その属性プロパティ関連付けます。

<Localizable(True)> _  
Public Property MyProperty() As
 Integer
    Get
        ' Insert code here.
        Return 0
    End Get
    Set
        ' Insert code here.
    End Set 
End Property

[Localizable(true)]
public int MyProperty {
   get {
      // Insert code here.
      return 0;
   }
   set {
      // Insert code here.
   }
}
   
   [Localizable(true)]
   int get()
   {
      // Insert code here.
      return 0;
   }

   void set( int value )
   {
      // Insert code here.
   }
}
/** @attribute Localizable(true)
 */

/** @property 
 */
public int get_MyProperty()
{
    // Insert code here.
    return 0;
} //get_MyProperty

/** @property
 */
public void set_MyProperty(int
 value)
{
    // Insert code here.
} //set_MyProperty
public Localizable(true)
function get MyProperty() : int{
  // Insert code here.  Attribute goes on getter only when a property
 has
  // both a getter and a setter.
  return 0
}

function set MyProperty(value : int){
  // Insert code here.
}

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



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

辞書ショートカット

すべての辞書の索引

「LocalizableAttribute コンストラクタ」の関連用語

LocalizableAttribute コンストラクタのお隣キーワード
検索ランキング

   

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



LocalizableAttribute コンストラクタのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

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

©2025 GRAS Group, Inc.RSS