ActiveReports Developer 7
Selection Class
Members  Example  See Also 
GrapeCity.ActiveReports.Design.Win.v7 Assembly > GrapeCity.ActiveReports.Design Namespace : Selection Class

Glossary Item Box

Indicates the currently selected items in the report layout.

Object Model

Selection Class

Syntax

Visual Basic (Declaration) 
Public Class Selection 
C# 
public class Selection 

Example

C#Copy Code
// cboPropList_SelectedIndexChanged - runs when the Property List Drop Down is changed

private void cboPropList_SelectedIndexChanged(object sender, System.EventArgs e)
{
    this.ardMain.Selection.Select(((ARComboItem)this.comboHashTable[this.cboPropList.SelectedItem.ToString()]).Item);
}
Visual BasicCopy Code
'cboPropList_SelectedIndexChanged - runs when the Property List Drop Down is changed
Private Sub cboPropList_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles cboPropList.SelectedIndexChanged
    Me.ardMain.Selection.Select(CType(Me.comboHashTable(Me.cboPropList.SelectedItem.ToString()), ARComboItem).Item)
End Sub 'cboPropList_SelectedIndexChanged

Inheritance Hierarchy

System.Object
   GrapeCity.ActiveReports.Design.Selection

See Also