Skybrud.Umbraco.GridData.GridRow.GetAllControls C# (CSharp) Method

GetAllControls() public method

Gets an array of all nested controls.
public GetAllControls ( ) : GridControl[]
return GridControl[]
        public GridControl[] GetAllControls() {
            return (
                from area in Areas
                from control in area.Controls
                select control
            ).ToArray();
        }

Same methods

GridRow::GetAllControls ( bool>.Func predicate ) : GridControl[]
GridRow::GetAllControls ( string alias ) : GridControl[]