LocalizableAttribute コンストラクタ
アセンブリ: System (system.dll 内)


プロパティをローカライズする必要があるとしてマークする例を次に示します。このコードは、新しい 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. } }

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


- LocalizableAttribute コンストラクタのページへのリンク