AutoCompleteAttribute.Value プロパティ

定義

COM+ の AutoComplete オプション設定を示す値を取得します。

public:
 property bool Value { bool get(); };
public bool Value { get; }
member this.Value : bool
Public ReadOnly Property Value As Boolean

プロパティ値

COM+ の true が有効な場合は AutoComplete。それ以外の場合は false。 既定値は、true です。

次のコード例では、属性Valueの プロパティの値をAutoComplete取得します。

[AutoComplete(false)]
public void AutoCompleteAttribute_Value()
{
    // Get information on the member.
    System.Reflection.MemberInfo[] memberinfo =
        this.GetType().GetMember(
        "AutoCompleteAttribute_Value");

    // Get the AutoCompleteAttribute applied to the member.
    AutoCompleteAttribute attribute =
        (AutoCompleteAttribute)System.Attribute.GetCustomAttribute(
        memberinfo[0],
        typeof(AutoCompleteAttribute),
        false);

    // Display the value of the attribute's Value property.
    Console.WriteLine("AutoCompleteAttribute.Value: {0}", attribute.Value);
}
<AutoComplete(False)>  _
Public Sub AutoCompleteAttribute_Value() 
    ' Get information on the member.
    Dim memberinfo As System.Reflection.MemberInfo() = Me.GetType().GetMember("AutoCompleteAttribute_Value")
    
    ' Get the AutoCompleteAttribute applied to the member.
    Dim attribute As AutoCompleteAttribute = CType(System.Attribute.GetCustomAttribute(memberinfo(0), GetType(AutoCompleteAttribute), False), AutoCompleteAttribute)
    
    ' Display the value of the attribute's Value property.
    MsgBox("AutoCompleteAttribute.Value: " & attribute.Value)

End Sub

適用対象