DataPA Enterprise Dashboard Controls API Reference
Gets and sets a value that indicates if this drill down should show checkboxes and a process button in a data grid.

Namespace: DataPAEnterpriseDashboard
Assembly: DataPAEnterpriseDashboard (in DataPAEnterpriseDashboard.dll) Version: 1.0.90.0 (1.0.90.0)

Syntax

C#
public bool ShowCheckBoxes { get; set; }
Visual Basic
Public Property ShowCheckBoxes As Boolean
	Get
	Set
Visual C++
public:
virtual property bool ShowCheckBoxes {
	bool get () sealed;
	void set (bool value) sealed;
}

Property Value

Type: Boolean
True if this drill down should show checkboxes and a process button in a data grid.

Return Value

Type: Boolean
True if this drill down should show checkboxes and a process button in a data grid.

Remarks

If set to true, checkboxes and a process button will be shown on a data grid. If pressed, the selected rows will be passed in the SelectedRowsProcessRequest event.

See Also