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.
}
プラットフォーム
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 によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。
バージョン情報
.NET Framework
サポート対象 : 2.0、1.1、1.0
参照
関連項目
LocalizableAttribute クラス
LocalizableAttribute メンバ
System.ComponentModel 名前空間
LocalizableAttribute クラス