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

In This Topic
    LayerName Property (ReportItem)
    In This Topic
    Gets or sets the name of the layer to which this report item belongs.
    Syntax
    'Declaration
     
    Public Property LayerName As String
    public string LayerName {get; set;}

    Property Value

    A System.String value indicating the name of the layer. Default value is "default".
    Example
    var reportItem = new TextBox();
    reportItem.LayerName = "Layer1";
    See Also