See Also

XMLDataSource Class  | XMLDataSource Members

Language

Visual Basic

C#

Show All

See Also Languages ActiveReports Send feedback to Data Dynamics

EOF Property

Determines whether the CurrentPosition is at the end of the NodeList.

[Visual Basic]
Public ReadOnly Property EOF As Boolean
[C#]
public bool EOF {get;}

Example

[C#] 

private void Detail_Format(object sender, System.EventArgs eArgs) 

    if (xDS.BOF && xDS.EOF) 
    { 
        return; 
    } 

[Visual Basic] 

Private Sub Detail_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail.Format
    Dim xDS As New DataDynamics.ActiveReports.DataSources.XMLDataSource()
    Dim rpt As New ActiveReport1()

    If xDS.BOF & xDS.EOF Then
        Exit Sub
    End If

End Sub

See Also

XMLDataSource Class  | XMLDataSource Members

 

 


Copyright © 2004-2005 Data Dynamics, Ltd. All rights reserved.