GrapeCity.ActiveReports.v9 Assembly > GrapeCity.ActiveReports Namespace > SectionCollection Class : Contains Method |
Specifies the Section object to be searched for in the collection.
Specifies the Section object to be searched for in the collection.
private void rpt_ReportEnd(object sender, System.EventArgs eArgs) { System.Windows.Forms.MessageBox.Show(this.Sections.Contains(this.Sections["detail"]).ToString()); }
Private Sub rpt_ReportEnd(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.ReportEnd MsgBox(Me.Sections.Contains(Me.Sections("Detail1")).ToString) End Sub