Share via


ReportPartNavigationResult Class

Provides properties for gathering information on the navigation target for the ReportPartBookmarkNavigation Event.

Namespace CrystalDecisions.Shared Assembly CrystalDecisions.Shared (CrystalDecisions.Shared.dll)

Syntax

'Declaration
Public Class ReportPartNavigationResult
    Implements ICloneable
public class ReportPartNavigationResult : ICloneable

Example

This example shows how to initialize the ReportPartNavigationResult object.

'Declaration

          Private Sub InitializeReportPartNavigationResult(ByVal myTotallerNodeID As TotallerNodeID, _
          ByVal myPageNumber As Integer, ByVal mySectionNumber As Integer)
          Dim myReportPartNavigationResult As ReportPartNavigationResult = New ReportPartNavigationResult
          myReportPartNavigationResult.DrillDownContext = myTotallerNodeID
          myReportPartNavigationResult.PageNumber = myPageNumber
          myReportPartNavigationResult.SectionNumber = mySectionNumber
          End Sub
        
          private void InitializeReportPartNavigationResult
          (TotallerNodeID totallerNodeID, int pageNumber, int sectionNumber)
          {
          ReportPartNavigationResult reportPartNavigationResult = new ReportPartNavigationResult();
          reportPartNavigationResult.DrillDownContext = totallerNodeID;
          reportPartNavigationResult.PageNumber = pageNumber;
          reportPartNavigationResult.SectionNumber = sectionNumber;
          }
        

Inheritance Hierarchy

Object
   ReportPartNavigationResult

Version Information

Crystal Reports Basic for Visual Studio 2008

Supported since: Crystal Reports .NET 9

See Also

Reference

ReportPartNavigationResult Members
CrystalDecisions.Shared Namespace