NextGrid6 Reference Classes TNxCustomGrid6 ActiveView

ActiveView

Indicates currently active view.

pas
property ActiveView: INxGridView read FActiveView write SetActiveView;

Active view is an only view currently visible and interactive for user.

Example

pas
NextGrid61.ActiveView := NxReportGridView61;
NextGrid61.ActiveView := NextGrid61.Views[2]; // Equal to NextGrid61.ActiveViewIndex := 2;
NextGrid61.ActiveView.ShowHeader := False;

Sign in