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

In This Topic
    Bookmark Property (ReportItem)
    In This Topic
    Gets or sets a bookmark for the report item, which can be linked via a Bookmark action.
    Syntax
    'Declaration
     
    Public Property Bookmark As ExpressionInfo
    public ExpressionInfo Bookmark {get; set;}

    Property Value

    An GrapeCity.Enterprise.Data.Expressions.ExpressionInfo object evaluating to the bookmark text.
    Example
    var reportItem = new TextBox();
    reportItem.Bookmark = "Bookmark1";
    See Also