MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.Rdl.Model Namespace / DataSetExtensions Class / IsNested Method
A GrapeCity.ActiveReports.PageReportModel.IDataSet object to check.

In This Topic
IsNested Method
In This Topic

Determines if the dataset is a nested dataset. A nested dataset is a dataset that references another dataset instead of a datasource. A dataset reference consists of the prefix "$dataset:", the name of the parent dataset, the path separator "/", and the name of the field from the parent dataset containing this dataset.

Syntax
'Declaration
 
Public Shared Function IsNested( _
   ByVal dataSet As IDataSet _
) As Boolean
 

Parameters

dataSet
A GrapeCity.ActiveReports.PageReportModel.IDataSet object to check.

Return Value

A System.Boolean value. true if the dataset is a nested dataset; otherwise, false.
Remarks
This method should not be used directly in application code. It is designed for internal operations within the product libraries and may change or be removed in future versions without notice.
See Also