ReportExecutionService.NavigateBookmark Method (String, String)

 

Applies To: SQL Server 2016 Preview

Navigates to a specific bookmark in the report.

Namespace:   ReportExecution2005
Assembly:  ReportExecution2005 (in ReportExecution2005.dll)

Syntax

public int NavigateBookmark(
    string BookmarkID,
    out string UniqueName
)
public:
int NavigateBookmark(
    String^ BookmarkID,
    [OutAttribute] String^% UniqueName
)
member NavigateBookmark : 
        BookmarkID:string *
        UniqueName:string byref -> int
Public Function NavigateBookmark (
    BookmarkID As String,
    <OutAttribute> ByRef UniqueName As String
) As Integer

Parameters

  • UniqueName
    Type: System.String

    The name of the report item that the client should use to position the view area.

Return Value

Type: System.Int32

An integer containing the page number that corresponds to the bookmark ID, or 0 if the BookMarkID is invalid or is not found.

Remarks

The table below shows header and permissions information on this operation.

SOAP Header Usage

(In) TrustedUserHeaderValue

(In) ExecutionHeaderValue

(Out) ServerInfoHeaderValue

Native Mode Required Permissions

None

SharePoint Mode Required Permissions

None

Bookmarks are included in the rendered report. You must parse the rendering to obtain the ID of the bookmark.

See Also

ReportExecutionService Class
ReportExecution2005 Namespace

Return to top