RecommendedAsConfigurableAttribute Class
NOTE: This class is now obsolete. The non-obsolete alternative is SettingsBindableAttribute.
Specifies that the property can be used as an application setting. Namespace: System.ComponentModelAssembly: System (in system.dll)
'Declaration <AttributeUsageAttribute(AttributeTargets.Property)> _ <ObsoleteAttribute("Use System.ComponentModel.SettingsBindableAttribute instead to work with the new settings model.")> _ Public Class RecommendedAsConfigurableAttribute Inherits Attribute 'Usage Dim instance As RecommendedAsConfigurableAttribute
/** @attribute AttributeUsageAttribute(AttributeTargets.Property) */
/** @attribute ObsoleteAttribute("Use System.ComponentModel.SettingsBindableAttribute instead to work with the new settings model.") */
public class RecommendedAsConfigurableAttribute extends Attribute
AttributeUsageAttribute(AttributeTargets.Property) ObsoleteAttribute("Use System.ComponentModel.SettingsBindableAttribute instead to work with the new settings model.") public class RecommendedAsConfigurableAttribute extends Attribute
Not applicable.
Properties that are marked with the RecommendedAsConfigurableAttribute set to true display when you expand the ConfigurableProperties line in the Properties window. A property that has no recommended setting or that is marked with RecommendedAsConfigurableAttribute set to false is not shown and is an unlikely candidate for being an application setting. The default is false.
You can bind a property that does not have a RecommendedAsConfigurableAttribute to a setting in Visual Studio .NET by clicking the ellipsis button (…) under Settings in the Properties window and selecting the appropriate property from the list.
Note: |
|---|
| When you mark a property with RecommendedAsConfigurableAttribute set to true, the value of this attribute is set to the constant member Yes. For a property marked with RecommendedAsConfigurableAttribute set to value false, the value is No. Therefore, when you want to check the value of this attribute in your code, you must specify the attribute as RecommendedAsConfigurableAttribute.Yes or RecommendedAsConfigurableAttribute.No. |
For more information, see Attributes Overview and Extending Metadata Using Attributes.
.
The following example marks a property as usable as an application setting.
<RecommendedAsConfigurable(True)> _ Public Property MyProperty() As Integer Get ' Insert code here. Return 0 End Get Set ' Insert code here. End Set End Property
/** @attribute RecommendedAsConfigurable(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
The next example shows how to check the value of the RecommendedAsConfigurableAttribute for MyProperty. First the code gets a PropertyDescriptorCollection with all the properties for the object. Next it indexes into the PropertyDescriptorCollection to get MyProperty. Then it returns the attributes for this property and saves them in the attributes variable.
This example presents two different ways of checking the value of the RecommendedAsConfigurableAttribute. In the second code fragment, the example calls the Equals method. In the last code fragment, the example uses the RecommendedAsConfigurable property to check the value.
' Gets the attributes for the property. Dim attributes As AttributeCollection = TypeDescriptor.GetProperties(Me)("MyProperty").Attributes ' Checks to see if the value of the RecommendedAsConfigurableAttribute is Yes. If attributes(GetType(RecommendedAsConfigurableAttribute)).Equals(RecommendedAsConfigurableAttribute.Yes) Then ' Insert code here. End If ' This is another way to see if the property is recommended as configurable. Dim myAttribute As RecommendedAsConfigurableAttribute = _ CType(attributes(GetType(RecommendedAsConfigurableAttribute)), RecommendedAsConfigurableAttribute) If myAttribute.RecommendedAsConfigurable Then ' Insert code here. End If
// Gets the attributes for the property.
AttributeCollection attributes =
TypeDescriptor.GetProperties(this).get_Item(
"MyProperty").get_Attributes();
// Checks to see if the value of the
// RecommendedAsConfigurableAttribute is Yes.
if (attributes.get_Item(RecommendedAsConfigurableAttribute.class.
ToType()).Equals(RecommendedAsConfigurableAttribute.Yes)) {
// Insert code here.
}
// This is another way to see if the property is recommended
// as configurable.
RecommendedAsConfigurableAttribute myAttribute =
((RecommendedAsConfigurableAttribute)(attributes.get_Item
(RecommendedAsConfigurableAttribute.class.ToType())));
if (myAttribute.get_RecommendedAsConfigurable()) {
// Insert code here.
}
If you marked a class with the RecommendedAsConfigurableAttribute, use the following code to check the value.
Dim attributes As AttributeCollection = TypeDescriptor.GetAttributes(MyProperty) If attributes(GetType(RecommendedAsConfigurableAttribute)).Equals(RecommendedAsConfigurableAttribute.Yes) Then ' Insert code here. End If
AttributeCollection attributes =
TypeDescriptor.GetAttributes("MyProperty");
if (attributes.get_Item(RecommendedAsConfigurableAttribute.class.
ToType()).Equals(RecommendedAsConfigurableAttribute.Yes)) {
// Insert code here.
}
Windows 98, Windows Server 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
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.
Note: