Skip to content

Commit fc21a2b

Browse files
Merge pull request #967 from syncfusion-content/SEO-187952-Xamarin-HTTP-to-HTTPS
Merged
2 parents 5918e70 + c26f160 commit fc21a2b

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Xamarin/DataGrid/Columns.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -66,23 +66,23 @@ The `SfDataGrid.AutoGenerateColumnsMode` is of [AutoGenerateColumnsMode](https:/
6666
<th> Description </th>
6767
</tr>
6868
<tr>
69-
<td> {{'[None](http://help.syncfusion.com/cr/xamarin/Syncfusion.SfDataGrid.XForms.AutoGenerateColumnsMode.html)'| markdownify }} </td>
69+
<td> {{'[None](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfDataGrid.XForms.AutoGenerateColumnsMode.html#Syncfusion_SfDataGrid_XForms_AutoGenerateColumnsMode_None)'| markdownify }} </td>
7070
<td> Stores only the columns that are defined in SfDataGrid.Columns collection.<br/> When changing the ItemsSource, the grouping and sorting for explicitly defined SfDataGrid.Columns alone will be retained. </td>
7171
</tr>
7272
<tr>
73-
<td> {{'[Reset](http://help.syncfusion.com/cr/xamarin/Syncfusion.SfDataGrid.XForms.AutoGenerateColumnsMode.html)'| markdownify }} </td>
73+
<td> {{'[Reset](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfDataGrid.XForms.AutoGenerateColumnsMode.html#Syncfusion_SfDataGrid_XForms_AutoGenerateColumnsMode_Reset)'| markdownify }} </td>
7474
<td> Retains the columns defined explicitly in the application level and creates columns newly for all the other properties in a data source.<br/> When changing the ItemsSource, the grouping and sorting for explicitly defined SfDataGrid.Columns alone will be retained. </td>
7575
</tr>
7676
<tr>
77-
<td> {{'[ResetAll](http://help.syncfusion.com/cr/xamarin/Syncfusion.SfDataGrid.XForms.AutoGenerateColumnsMode.html)'| markdownify }} </td>
77+
<td> {{'[ResetAll](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfDataGrid.XForms.AutoGenerateColumnsMode.html#Syncfusion_SfDataGrid_XForms_AutoGenerateColumnsMode_ResetAll)'| markdownify }} </td>
7878
<td> When changing the ItemsSource, the columns for the previous data source are cleared and the columns will be created newly for the new data source. Even when columns are explicitly defined it does not consider the defined columns and creates the column based on the underlying collection.<br/> Further when changing the ItemsSource, the grouping and sorting for all the columns will be cleared. </td>
7979
</tr>
8080
<tr>
81-
<td> {{'[RetainOld](http://help.syncfusion.com/cr/xamarin/Syncfusion.SfDataGrid.XForms.AutoGenerateColumnsMode.html)'| markdownify }} </td>
81+
<td> {{'[RetainOld](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfDataGrid.XForms.AutoGenerateColumnsMode.html#Syncfusion_SfDataGrid_XForms_AutoGenerateColumnsMode_RetainOld)'| markdownify }} </td>
8282
<td> When changing the ItemsSource, creates columns for all fields in a data source when the Grid does not have any explicit definition for columns. When columns are defined explicitly, then the defined columns alone are retained and new columns are not created.<br/>Similarly when changing the ItemsSource and when the Grid have any explicit definition for columns, the grouping and sorting are retained as it is. </td>
8383
</tr>
8484
<tr>
85-
<td> {{'[SmartReset](http://help.syncfusion.com/cr/xamarin/Syncfusion.SfDataGrid.XForms.AutoGenerateColumnsMode.html)'| markdownify }} </td>
85+
<td> {{'[SmartReset](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfDataGrid.XForms.AutoGenerateColumnsMode.html#Syncfusion_SfDataGrid_XForms_AutoGenerateColumnsMode_SmartReset)'| markdownify }} </td>
8686
<td> Retains the columns defined explicitly in application level and the columns with MappingName identical to the properties in the new data source. Creates columns newly for all the other properties in the data source.<br/> Similarly it retains the grouping and sorting of the columns that are defined explicitly in application level and the columns with MappingName identical to the properties in new data source. </td>
8787
</tr>
8888
</table>

Xamarin/DataGrid/Export-To-PDF.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -920,7 +920,7 @@ The SfDataGrid provides you the following events for exporting:
920920

921921
### RowExporting
922922

923-
The [DataGridRowPdfExportingEventHandler](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfDataGrid.XForms.Exporting.DataGridRowPdfExportingEventhandler.html) delegate allows customizing the styles of record rows and group caption rows. The `RowExporting` event is triggered with [DataGridRowPdfExportingEventArgs](http://help.syncfusion.com/cr/xamarin/Syncfusion.SfDataGrid.XForms.Exporting.DataGridRowPdfExportingEventArgs.html) that contains the following properties:
923+
The [DataGridRowPdfExportingEventHandler](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfDataGrid.XForms.Exporting.DataGridRowPdfExportingEventhandler.html) delegate allows customizing the styles of record rows and group caption rows. The `RowExporting` event is triggered with [DataGridRowPdfExportingEventArgs](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfDataGrid.XForms.Exporting.DataGridRowPdfExportingEventArgs.html) that contains the following properties:
924924

925925
* [PdfGrid](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfDataGrid.XForms.Exporting.DataGridRowPdfExportingEventArgs.html#Syncfusion_SfDataGrid_XForms_Exporting_DataGridRowPdfExportingEventArgs__ctor_Syncfusion_Data_RecordEntry_Syncfusion_Pdf_Grid_PdfGridRow_Syncfusion_Pdf_Grid_PdfGrid_Syncfusion_SfDataGrid_XForms_Exporting_ExportRowType_Syncfusion_Pdf_Grid_PdfGridCellStyle_System_Object_): Customizes the pdfGrid properties such as `Background`, `CellPadding`, `CellSpacing`, and so on.
926926
* [PdfRow](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfDataGrid.XForms.Exporting.DataGridRowPdfExportingEventArgs.html#Syncfusion_SfDataGrid_XForms_Exporting_DataGridRowPdfExportingEventArgs_PdfRow): Specifies the `PDFGridRow` to be exported. Customizes the properties of a particular row.
@@ -962,7 +962,7 @@ void pdfExport_RowExporting (object sender, DataGridRowPdfExportingEventArgs e)
962962

963963
The [DataGridCellPdfExportingEventHandler](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfDataGrid.XForms.Exporting.DataGridCellPdfExportingEventhandler.html) delegate allows customizing the styles for the header cells, record cells, group caption cells, and group summary cells. The `CellExporting` event is triggered with [DataGridCellPdfExportingEventArgs](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfDataGrid.XForms.Exporting.DataGridCellPdfExportingEventArgs.html) that contains the following properties:
964964

965-
The [DataGridCellPdfExportingEventHandler](http://help.syncfusion.com/cr/xamarin/Syncfusion.SfDataGrid.XForms.Exporting.DataGridCellPdfExportingEventhandler.html) delegate allows customizing the styles for header cells, record cells, and group caption cells. The `CellExporting` event is triggered with [DataGridCellPdfExportingEventArgs](http://help.syncfusion.com/cr/xamarin/Syncfusion.SfDataGrid.XForms.Exporting.DataGridCellPdfExportingEventArgs.html) that contains the following properties:
965+
The [DataGridCellPdfExportingEventHandler](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfDataGrid.XForms.Exporting.DataGridCellPdfExportingEventhandler.html) delegate allows customizing the styles for header cells, record cells, and group caption cells. The `CellExporting` event is triggered with [DataGridCellPdfExportingEventArgs](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfDataGrid.XForms.Exporting.DataGridCellPdfExportingEventArgs.html) that contains the following properties:
966966

967967
* [CellType](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfDataGrid.XForms.Exporting.DataGridCellPdfExportingEventArgs.html#Syncfusion_SfDataGrid_XForms_Exporting_DataGridCellPdfExportingEventArgs_CellType): Specifies the cell type using `ExportCellType` enum. Checks the cell type and applies different cell styles based on the cell type.
968968
* [CellValue](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfDataGrid.XForms.Exporting.DataGridCellPdfExportingEventArgs.html#Syncfusion_SfDataGrid_XForms_Exporting_DataGridCellPdfExportingEventArgs_CellValue): Contains the exported actual value to format the PDF using the `Range` property.

0 commit comments

Comments
 (0)