次の方法で共有


DefaultValueAttribute クラス

プロパティの既定値を指定します。

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

構文

'宣言
<AttributeUsageAttribute(AttributeTargets.All)> _
Public Class DefaultValueAttribute
    Inherits Attribute
'使用
Dim instance As DefaultValueAttribute
[AttributeUsageAttribute(AttributeTargets.All)] 
public class DefaultValueAttribute : Attribute
[AttributeUsageAttribute(AttributeTargets::All)] 
public ref class DefaultValueAttribute : public Attribute
/** @attribute AttributeUsageAttribute(AttributeTargets.All) */ 
public class DefaultValueAttribute extends Attribute
AttributeUsageAttribute(AttributeTargets.All) 
public class DefaultValueAttribute extends Attribute

解説

任意の値を指定して DefaultValueAttribute を作成できます。通常、メンバの既定値はその初期値になります。ビジュアル デザイナでは、その既定値を使用してメンバの値をリセットできます。コード ジェネレータでも、既定値を使用して、メンバに対してコードを生成する必要があるかどうかを判断できます。

詳細については、属性の概要属性を使用したメタデータの拡張 の各トピックを参照してください。

トピック 場所
チュートリアル : カスタム サーバー コントロールの開発と使用 ASP.NET コントロールの作成
ASP.NET 1.1 用カスタム データ バインド Web サーバー コントロールの開発 ASP.NET コントロールの作成
ASP.NET 2.0 用カスタム データ バインド Web サーバー コントロールの開発 ASP.NET コントロールの作成
チュートリアル : ASP.NET 2.0 用カスタム データ バインド ASP.NET Web コントロールの作成 ASP.NET コントロールの作成
チュートリアル : ASP.NET 1.1 用カスタム データ バインド ASP.NET Web コントロールの作成 ASP.NET コントロールの作成
チュートリアル : カスタム サーバー コントロールの開発と使用 Visual Web Developer でのアプリケーションの作成
ASP.NET 1.1 用カスタム データ バインド Web サーバー コントロールの開発 Visual Studio ASP .NET での Web アプリケーションの作成
チュートリアル : ASP.NET 1.1 用カスタム データ バインド ASP.NET Web コントロールの作成 Visual Studio ASP .NET での Web アプリケーションの作成
ASP.NET 2.0 用カスタム データ バインド Web サーバー コントロールの開発 Visual Studio ASP .NET での Web アプリケーションの作成
チュートリアル : ASP.NET 2.0 用カスタム データ バインド ASP.NET Web コントロールの作成 Visual Studio ASP .NET での Web アプリケーションの作成
ASP.NET 1.1 用カスタム データ バインド Web サーバー コントロールの開発 Visual Studio ASP .NET での Web アプリケーションの作成
ASP.NET 2.0 用カスタム データ バインド Web サーバー コントロールの開発 Visual Studio ASP .NET での Web アプリケーションの作成
チュートリアル : ASP.NET 2.0 用カスタム データ バインド ASP.NET Web コントロールの作成 Visual Studio ASP .NET での Web アプリケーションの作成
チュートリアル : ASP.NET 1.1 用カスタム データ バインド ASP.NET Web コントロールの作成 Visual Studio ASP .NET での Web アプリケーションの作成

使用例

MyProperty の既定値として false を設定する例を次に示します。

Private MyVar as Boolean = False
<DefaultValue(False)> _
Public Property MyProperty() As Boolean
    Get
        Return MyVar
    End Get
    Set
        MyVar = Value
    End Set 
End Property
private bool myVal=false;

[DefaultValue(false)]
 public bool MyProperty {
    get {
       return myVal;
    }
    set {
       myVal=value;
    }
 }
private:
   bool myVal;

public:
   [DefaultValue(false)]
   property bool MyProperty 
   {
      bool get()
      {
         return myVal;
      }

      void set( bool value )
      {
         myVal = value;
      }
   }
private boolean myVal = false;

/** @attribute DefaultValue(false)
 */
/** @property 
 */
public boolean get_MyProperty()
{
    return myVal;
} //get_MyProperty

/** @property 
 */
public void set_MyProperty(boolean value)
{
    myVal = value;
} //set_MyProperty

MyProperty の既定値を確認する例を次に示します。最初に、オブジェクトのすべてのプロパティを保持する PropertyDescriptorCollection を取得します。次に、インデックスを付けて PropertyDescriptorCollection から MyProperty を取得します。そして、このプロパティの属性を返し、その属性を属性変数に保存します。

最後に、AttributeCollection から DefaultValueAttribute を取得し、その名前をコンソール画面に書き込むことによって、既定値を出力します。

' Gets the attributes for the property.
Dim attributes As AttributeCollection = _
    TypeDescriptor.GetProperties(Me)("MyProperty").Attributes

' Prints the default value by retrieving the DefaultValueAttribute
' from the AttributeCollection. 
Dim myAttribute As DefaultValueAttribute = _
    CType(attributes(GetType(DefaultValueAttribute)), DefaultValueAttribute)
Console.WriteLine(("The default value is: " & myAttribute.Value.ToString()))
// Gets the attributes for the property.
 AttributeCollection attributes = 
    TypeDescriptor.GetProperties(this)["MyProperty"].Attributes;
 
 /* Prints the default value by retrieving the DefaultValueAttribute 
  * from the AttributeCollection. */
 DefaultValueAttribute myAttribute = 
    (DefaultValueAttribute)attributes[typeof(DefaultValueAttribute)];
 Console.WriteLine("The default value is: " + myAttribute.Value.ToString());
// Gets the attributes for the property.
AttributeCollection^ attributes = TypeDescriptor::GetProperties( this )[ "MyProperty" ]->Attributes;

/* Prints the default value by retrieving the DefaultValueAttribute 
      * from the AttributeCollection. */
DefaultValueAttribute^ myAttribute = dynamic_cast<DefaultValueAttribute^>(attributes[ DefaultValueAttribute::typeid ]);
Console::WriteLine( "The default value is: {0}", myAttribute->Value );
// Gets the attributes for the property.
AttributeCollection attributes = TypeDescriptor.GetProperties(this).
    get_Item("MyProperty").get_Attributes();

/* Prints the default value by retrieving the DefaultValueAttribute 
   from the AttributeCollection. 
 */
DefaultValueAttribute myAttribute = (DefaultValueAttribute)(attributes.
    get_Item(DefaultValueAttribute.class.ToType()));

Console.WriteLine(("The default value is: " 
    + myAttribute.get_Value().ToString()));

継承階層

System.Object
   System.Attribute
    System.ComponentModel.DefaultValueAttribute

スレッド セーフ

この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバの場合は、スレッド セーフであるとは限りません。

プラットフォーム

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, 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

.NET Compact Framework

サポート対象 : 2.0、1.0

参照

関連項目

DefaultValueAttribute メンバ
System.ComponentModel 名前空間
Attribute
PropertyDescriptor