Skip to content

Commit f5b7eca

Browse files
authored
Merge pull request #2 from SweathaBharathi/patch-1
Update README.md
2 parents 68be8c6 + 1acf4a0 commit f5b7eca

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# How to export DetailsView records in expanded state from WPF DataGrid
1+
# How to export DetailsView records in expanded state from WPF DataGrid?
22

3-
You can export [WPF DataGrid](https://www.syncfusion.com/wpf-controls/datagrid) (SfDataGrid) to excel and it is possible to process the exported excel file using XlsIO. For example, you can expand the details view records in exported excel file alone by calling Range.ExpandGroup method for worksheet.
3+
In [WPF DataGrid](https://www.syncfusion.com/wpf-controls/datagrid) (SfDataGrid) , you can export DataGrid to excel and it is possible to process the exported excel file using XlsIO. For example, you can expand the details view records in exported excel file alone by calling **Range.ExpandGroup** method for worksheet.
44

55
```C#
66
ExcelExportingOptions exportoption = new ExcelExportingOptions();
@@ -9,7 +9,6 @@ var workbook = excelengine.Excel.Workbooks[0];
99
workbook.Worksheets[0].Range.ExpandGroup(ExcelGroupBy.ByRows, ExpandCollapseFlags.IncludeSubgroups);
1010
```
1111

12-
In the below screen shot, DetailsView DataGrid expanded only in excel file and not in SfDataGrid.
12+
In the below screen shot, DetailsViewDataGrid expanded only in excel file and not in DataGrid.
1313

1414
![Screenshot shown in DetailsView Expanded state](DetailsViewExpanded.png)
15-

0 commit comments

Comments
 (0)