|
//To show the GroupDropArea
this.gridGroupingControl1.ShowGroupDropArea = true;
//To set the Font Style of GroupDropArea
this.gridGroupingControl1.GridGroupDropArea.Font = new Font("Segoe UI", 13f);
|
|
public void SetGroupDropArea(GridGroupingControl grid, bool visible)
{
//To show the GroupDropArea
grid.ShowGroupDropArea = visible;
//To set the Font Style of GroupDropArea
grid.TableModel.Table.TopLevelGroup.ParentTableDescriptor.Name = "Parent Table";
grid.HierarchicalGroupDropArea = true;
//To set the Font style for GroupDropArea
grid.GridGroupDropArea.Model.BaseStylesMap.Standard.StyleInfo.Font = new GridFontInfo(new Font("Segeo UI", 13f));
grid.GridGroupDropArea.AllowRemove = true;
grid.GridGroupDropArea.TreeLinePlacement = TreeLinePlacement.Bottom;
grid.GridGroupDropArea.DynamicResizing = true;
grid.GridGroupDropArea.TreeLineColor = Color.Red;
} |