ActiveReports 9
Contains Method (SectionCollection)
Example 

Specifies the Section object to be searched for in the collection.

Determines whether the specified section object exists in the collection.
Syntax
'Declaration
 
Public Function Contains( _
   ByVal section As Section _
) As System.Boolean
public System.bool Contains( 
   Section section
)

Parameters

section

Specifies the Section object to be searched for in the collection.

Return Value

Boolean. Returns True if the section exists in the collection; otherwise, False.
Example
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
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

SectionCollection Class
SectionCollection Members

 

 


Copyright © 2014 GrapeCity, inc. All rights reserved

Support Forum