We do not have a StyleSheet editor available however, if you wish to “load” your style sheet you can use :
GenerateReportForm generateReport = new GenerateReportForm(this.gridControl1,@”d:\dump”);
generateReport.ShowDialog();
By creating an instance of the generateReport, you will have a constructor that will take a folder as a parameter, you will now be able to load layouts and save them from the form. If you don’t create an instance of the generateReport, you will have a static load method as show here :
Xceed.Grid.Reporting.ReportStyleSheet.Load();
Imported from legacy forums. Posted by Matt (had 2774 views)