ApplicationVisibleAttribute Class

Indicates if the method, property, or event that this attribute is applied to should be visible from within the Microsoft Dynamics NAV development environment.

Namespace: Microsoft.Dynamics.Framework.UI.Extensibility
Assembly: Microsoft.Dynamics.Framework.UI.Extensibility (in Microsoft.Dynamics.Framework.UI.Extensibility.dll)

Usage

Syntax

'Declaration
<AttributeUsageAttribute(AttributeTargets.Method Or AttributeTargets.Property Or AttributeTargets.Event, AllowMultiple:=False, Inherited:=False)> _
Public NotInheritable Class ApplicationVisibleAttribute
    Inherits Attribute
[AttributeUsageAttribute(AttributeTargets.Method|AttributeTargets.Property|AttributeTargets.Event, AllowMultiple=false, Inherited=false)] 
public sealed class ApplicationVisibleAttribute : Attribute
[AttributeUsageAttribute(AttributeTargets::Method|AttributeTargets::Property|AttributeTargets::Event, AllowMultiple=false, Inherited=false)] 
public ref class ApplicationVisibleAttribute sealed : public Attribute
/** @attribute AttributeUsageAttribute(AttributeTargets.Method|AttributeTargets.Property|AttributeTargets.Event, AllowMultiple=false, Inherited=false) */ 
public final class ApplicationVisibleAttribute extends Attribute
AttributeUsageAttribute(AttributeTargets.Method|AttributeTargets.Property|AttributeTargets.Event, AllowMultiple=false, Inherited=false) 
public final class ApplicationVisibleAttribute extends Attribute

Remarks

private AccountControl AccountControl
{
   get { return this.Control as AccountControl; }
}

[ApplicationVisible]
public float AccountNumber
{
   get { return this.AccountControl.AccountNumber; }
   set { this.AccountControl.AccountNumber = value; }
}

Inheritance Hierarchy

System.Object
   System.Attribute
    Microsoft.Dynamics.Framework.UI.Extensibility.ApplicationVisibleAttribute

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

See Also

Reference

ApplicationVisibleAttribute Members
Microsoft.Dynamics.Framework.UI.Extensibility Namespace