Class BookmarkInfo
Represents information about a bookmark in the report model, which may include properties such as name, position, or reference within the document.
Inheritance
Namespace: BoldReports.RDL.Data
Assembly: BoldReports.Web.dll
Syntax
public class BookmarkInfo : Object
Constructors
BookmarkInfo()
Declaration
public BookmarkInfo()
Properties
Bookmark
Gets or sets the bookmark associated with the report model.
Declaration
public string Bookmark { get; set; }
Property Value
Type | Description |
---|---|
System.String | The bookmark is a string value that serves as a reference or identifier used to mark a particular position or section in the report. |
ColumnNo
Gets or sets the column number.
Declaration
public int ColumnNo { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | An integer representing the position or identifier of a column in a dataset or report. |
ContainerName
Gets or sets the name of the container associated with the report.
Declaration
public string ContainerName { get; set; }
Property Value
Type | Description |
---|---|
System.String | A System.String representing the container name. |
IsTablixChild
Gets or sets a value indicating whether the element is a child of a Tablix.
Declaration
public bool IsTablixChild { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | A boolean value where |
ItemName
Gets or sets the name of the item.
Declaration
public string ItemName { get; set; }
Property Value
Type | Description |
---|---|
System.String | A string representing the item's name. |
LeftPosition
Gets or sets the left position of an element in the report model.
Declaration
public double LeftPosition { get; set; }
Property Value
Type | Description |
---|---|
System.Double | A double representing the horizontal position of the element from the left side. |
PageNo
Gets or sets the page number associated with the report model.
Declaration
public int PageNo { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | An integer representing the current page number of the report. |
RowNo
Gets or sets the row number in the report model.
Declaration
public int RowNo { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | An integer representing the row number. |
TopPosition
Gets or sets the top position value for the report.
Declaration
public double TopPosition { get; set; }
Property Value
Type | Description |
---|---|
System.Double | A double representing the top position in the report layout. |
Methods
Dispose()
Provides a mechanism for releasing unmanaged resources.
Declaration
public void Dispose()
Remarks
It close or release unmanaged resources such as files, streams, and handles held by an instance of the class that implements this interface.