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)

Syntax

C#
[AttributeUsageAttribute(AttributeTargets.Method|AttributeTargets.Property|AttributeTargets.Event, AllowMultiple=false, Inherited=false)] 
public sealed class ApplicationVisibleAttribute : Attribute

Remarks

  Copy Code
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 members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also