'Declaration Public Property PropertyGrid As PropertyGrid
public PropertyGrid PropertyGrid {get; set;}
'Declaration Public Property PropertyGrid As PropertyGrid
public PropertyGrid PropertyGrid {get; set;}
This property is essential for enabling interactive report design experiences in applications that incorporate the GrapeCity ActiveReports Designer.
class MyForm : Form { MyForm() { var designer = new Designer() { Dock = DockStyle.Fill }; var propertyGrid = new PropertyGrid { Dock = DockStyle.Right }; designer.PropertyGrid = propertyGrid; Controls.Add(designer); Controls.Add(propertyGrid); } }