From c26f160e2cfa5fe136aecb770ea786fb3ae0a489 Mon Sep 17 00:00:00 2001
From: Yvone-Atieno <95272306+Yvone-Atieno@users.noreply.github.com>
Date: Wed, 21 Aug 2024 11:15:31 +0300
Subject: [PATCH] SEO-187952 Xamarin HTTP to HTTPS
---
Xamarin/DataGrid/Columns.md | 10 +++++-----
Xamarin/DataGrid/Export-To-PDF.md | 4 ++--
2 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/Xamarin/DataGrid/Columns.md b/Xamarin/DataGrid/Columns.md
index cad1d867a..30a91398f 100644
--- a/Xamarin/DataGrid/Columns.md
+++ b/Xamarin/DataGrid/Columns.md
@@ -66,23 +66,23 @@ The `SfDataGrid.AutoGenerateColumnsMode` is of [AutoGenerateColumnsMode](https:/
Description |
- {{'[None](http://help.syncfusion.com/cr/xamarin/Syncfusion.SfDataGrid.XForms.AutoGenerateColumnsMode.html)'| markdownify }} |
+ {{'[None](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfDataGrid.XForms.AutoGenerateColumnsMode.html#Syncfusion_SfDataGrid_XForms_AutoGenerateColumnsMode_None)'| markdownify }} |
Stores only the columns that are defined in SfDataGrid.Columns collection. When changing the ItemsSource, the grouping and sorting for explicitly defined SfDataGrid.Columns alone will be retained. |
- {{'[Reset](http://help.syncfusion.com/cr/xamarin/Syncfusion.SfDataGrid.XForms.AutoGenerateColumnsMode.html)'| markdownify }} |
+ {{'[Reset](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfDataGrid.XForms.AutoGenerateColumnsMode.html#Syncfusion_SfDataGrid_XForms_AutoGenerateColumnsMode_Reset)'| markdownify }} |
Retains the columns defined explicitly in the application level and creates columns newly for all the other properties in a data source. When changing the ItemsSource, the grouping and sorting for explicitly defined SfDataGrid.Columns alone will be retained. |
- {{'[ResetAll](http://help.syncfusion.com/cr/xamarin/Syncfusion.SfDataGrid.XForms.AutoGenerateColumnsMode.html)'| markdownify }} |
+ {{'[ResetAll](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfDataGrid.XForms.AutoGenerateColumnsMode.html#Syncfusion_SfDataGrid_XForms_AutoGenerateColumnsMode_ResetAll)'| markdownify }} |
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. Further when changing the ItemsSource, the grouping and sorting for all the columns will be cleared. |
- {{'[RetainOld](http://help.syncfusion.com/cr/xamarin/Syncfusion.SfDataGrid.XForms.AutoGenerateColumnsMode.html)'| markdownify }} |
+ {{'[RetainOld](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfDataGrid.XForms.AutoGenerateColumnsMode.html#Syncfusion_SfDataGrid_XForms_AutoGenerateColumnsMode_RetainOld)'| markdownify }} |
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. Similarly when changing the ItemsSource and when the Grid have any explicit definition for columns, the grouping and sorting are retained as it is. |
- {{'[SmartReset](http://help.syncfusion.com/cr/xamarin/Syncfusion.SfDataGrid.XForms.AutoGenerateColumnsMode.html)'| markdownify }} |
+ {{'[SmartReset](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfDataGrid.XForms.AutoGenerateColumnsMode.html#Syncfusion_SfDataGrid_XForms_AutoGenerateColumnsMode_SmartReset)'| markdownify }} |
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. 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. |
diff --git a/Xamarin/DataGrid/Export-To-PDF.md b/Xamarin/DataGrid/Export-To-PDF.md
index b23805920..c57301e88 100644
--- a/Xamarin/DataGrid/Export-To-PDF.md
+++ b/Xamarin/DataGrid/Export-To-PDF.md
@@ -920,7 +920,7 @@ The SfDataGrid provides you the following events for exporting:
### RowExporting
-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:
+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:
* [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.
* [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)
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:
-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:
+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:
* [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.
* [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.