GrapeCity.ActiveReports.v8 Assembly > GrapeCity.ActiveReports.Data Namespace > XMLDataSource Class : Document Property |
'Declaration Public ReadOnly Property Document As System.Xml.XmlDocument
public System.Xml.XmlDocument Document {get;}
Private void rpt_ReportStart(object sender, System.EventArgs eArgs) { System.Windows.Forms.MessageBox.Show (this.ds.Document.BaseURI.ToString()); }
Private Sub rpt_ReportStart(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.ReportStart MsgBox(Me.ds.Document.BaseURI.ToString) End Sub