Share via


ReportPartNode Class

Provides properties to identify a report object in the report and contains enough information for the report engine to find this report object.

Namespace CrystalDecisions.Web Assembly CrystalDecisions.Web (CrystalDecisions.Web.dll)

Syntax

'Declaration
Public Class ReportPartNode
public class ReportPartNode

Example

The following example verifies the report part node contains at least one drill down path and that it has a non-empty name.

'Declaration

      Private Function VerifyReportPartNode(ByVal reportPartNode As ReportPartNode) As Integer
        VerifyReportPartNode = reportPartNode.DrillDownPath.Count > 0 And reportPartNode.Name.Length > 0
      End Function
      private bool VerifyReportPartNode(ReportPartNode reportPartNode)
      {
        return (reportPartNode.DrillDownPath.Count > 0 && reportPartNode.Name.Length > 0);
      }

Inheritance Hierarchy

Object
   ReportPartNode

Version Information

Crystal Reports Basic for Visual Studio 2008

Supported since: Crystal Reports for Visual Studio .NET 2002

See Also

Reference

ReportPartNode Members
CrystalDecisions.Web Namespace