ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.PageReportModel Namespace / Shape Class / AccessibleDescription Property
Example

In This Topic
    AccessibleDescription Property (Shape)
    In This Topic
    Gets or sets the description of the control used by accessibility client applications.
    Syntax
    'Declaration
     
    Public Property AccessibleDescription As ExpressionInfo
    public ExpressionInfo AccessibleDescription {get; set;}

    Property Value

    An GrapeCity.Enterprise.Data.Expressions.ExpressionInfo object representing the accessible description of the shape.
    Example
    Shape shape = new Shape();
    shape.AccessibleDescription = "This is a rectangle shape.";
    See Also