Skip to content

Commit 1dc5b74

Browse files
Merge pull request #42 from Syncfusion-Content/hotfix/hotfix-v19.4.0.38
DOCINFRA-2341_merged_using_automation
2 parents e0a8c2f + 9766c6e commit 1dc5b74

File tree

4 files changed

+25
-25
lines changed

4 files changed

+25
-25
lines changed

xamarin-android/SfDataGrid/Columns.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
layout: post
33
title: Columns | SfDataGrid | Xamarin.Android | Syncfusion
4-
description: How to create and add columns, different ways to create columns and its customizations in a SfDataGrid.
4+
description: Learn here all about Columns support in Syncfusion Xamarin.Android DataGrid control, its elements and more.
55
platform: Xamarin.Android
66
control: SfDataGrid
77
documentation: UG
88
---
99

10-
# Columns
10+
# Columns in Xamarin.Android DataGrid
1111

1212
The SfDataGrid allows you to create and add columns in two ways:
1313

@@ -97,7 +97,7 @@ When the `SfDataGrid.AutoGenerateColumns` is `true`, the [SfDataGrid.AutoGenerat
9797
The `AutoGeneratingColumnArgs` object contains the following properties.
9898

9999
* [Column](https://help.syncfusion.com/cr/xamarin-android/): This property returns the created column using which can be customized.
100-
* [Cancel](http://help.syncfusion.com/cr/xamarin-android/Syncfusion.SfDataGrid.AutoGeneratingColumnArgs.html#): This property cancels the column creation.
100+
* [Cancel](https://help.syncfusion.com/cr/xamarin-android/Com.Syncfusion.Autocomplete.html): This property cancels the column creation.
101101
* PropertyType: This property provides the type of underlying model property for which the column is created.
102102

103103
You can skip generating a column by handling the `SfDataGrid.AutoGeneratingColumn` event as follows.
@@ -190,8 +190,8 @@ N> Resizing considers 'GridColumn.MinimumWidth' and 'GridColumn.MaximumWidth' of
190190
dataGrid.AllowResizingColumn = true;
191191
{% endhighlight %}
192192

193-
![](SfDataGrid_images/Resizing_HitTest_Android.png)
194-
![](SfDataGrid_images/Resizing_OnMoved.png)
193+
![Resizing columns in Xamarin.Android DataGrid](SfDataGrid_images/Resizing_HitTest_Android.png)
194+
![Resizing columns Onmoved in Xamarin.Android DataGrid](SfDataGrid_images/Resizing_OnMoved.png)
195195

196196
You can change the column width by tapping and dragging the resizing indicator.
197197

@@ -210,11 +210,11 @@ N> The default resizing mode is OnMoved.
210210

211211
The following image shows the resizing mode OnMoved.
212212

213-
![](SfDataGrid_images/Resizing_OnMoved.png)
213+
![Resizing modes OnMoved in Xamarin.Android DataGrid](SfDataGrid_images/Resizing_OnMoved.png)
214214

215215
The following image shows the resizing mode OnTouchUp.
216216

217-
![](SfDataGrid_images/Resizing_OnTouchUp.png)
217+
![Resizing mode OnTouchUp in Xamarin.Android DataGrid](SfDataGrid_images/Resizing_OnTouchUp.png)
218218

219219
### Resizing events
220220

@@ -225,7 +225,7 @@ The `SfDataGrid.ColumnResizing` event provides the following properties through
225225
* [Index](https://help.syncfusion.com/cr/xamarin-android/Syncfusion.SfDataGrid.GridResizingEventArgs.html#Syncfusion_SfDataGrid_GridResizingEventArgs_Index): Returns the index of the resizing column.
226226
* [NewValue](https://help.syncfusion.com/cr/xamarin-android/Syncfusion.SfDataGrid.GridResizingEventArgs.html#Syncfusion_SfDataGrid_GridResizingEventArgs_Index): Returns the current width of the resizing column.
227227
* [ResizingState](https://help.syncfusion.com/cr/xamarin-android/Syncfusion.SfDataGrid.GridResizingEventArgs.html#Syncfusion_SfDataGrid_GridResizingEventArgs_ResizingState): Returns the current state of the user-interaction through a value from the ProgressStates enum.
228-
* [Cancel](https://msdn.microsoft.com/query/dev10.query?appId=Dev10IDEF1&l=EN-US&k=k(System.ComponentModel.CancelEventArgs.Cancel)&rd=true): Returns the Boolean property to cancel the event and the resizing operation.
228+
* [Cancel](https://docs.microsoft.com/en-us/dotnet/api/system.componentmodel.canceleventargs.cancel?view=net-6.0): Returns the Boolean property to cancel the event and the resizing operation.
229229

230230
### Cancel resizing for a column
231231

Loading

xamarin-android/SfPopupLayout/Layout-Customizations.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
layout: post
33
title: Popup Layouts | SfPopupLayout |Xamarin.Android | Syncfusion
4-
description: Layouts in SfPopupLayout
4+
description: Learn here all about Layout Customization support in Syncfusion Xamarin.Android popup layout control, its elements and more.
55
platform: Xamarin.Android
66
control: SfPopupLayout
77
documentation: ug
88
---
99

10-
# Layout Customizations
10+
# Layout Customizations in Xamarin.Android popup layout
1111

1212
The SfPopupLayout supports two types of [SfPopupLayout.PopupView.AppearanceMode](https://help.syncfusion.com/cr/xamarin-android/Syncfusion.Android.PopupLayout.AppearanceMode.html). By default,`AppearanceMode.OneButton` is set. You can change the appearance of the SfPopupLayout by using the `SfPopupLayout.PopupView.AppearanceMode` property.
1313

@@ -77,7 +77,7 @@ namespace GettingStarted
7777

7878
Executing the above codes renders the following output in an android device.
7979

80-
![](GettingStarted_images/AppearanceMode_OneButton.png)
80+
![Displaying accepted button in Xamarin.Android popup layout](GettingStarted_images/AppearanceMode_OneButton.png)
8181

8282
## Pop-up with two buttons in the footer
8383

@@ -128,7 +128,7 @@ namespace GettingStarted
128128

129129
Executing the above codes renders the following output in an android device.
130130

131-
![](GettingStarted_images/AppearanceMode_TwoButton.png)
131+
![Displaying both accepted and declined button in Xamarin.Android popup layout](GettingStarted_images/AppearanceMode_TwoButton.png)
132132

133133
## Customizing pop-up layouts
134134

@@ -194,7 +194,7 @@ namespace GettingStarted
194194

195195
Executing the above codes renders the following output in an android device.
196196

197-
![](PopupLayout_images/HeaderTemplate.png)
197+
![Customized header in Xamarin.Android popup layout](PopupLayout_images/HeaderTemplate.png)
198198

199199
### Footer customization
200200

@@ -255,7 +255,7 @@ namespace GettingStarted
255255

256256
Executing the above codes renders the following output in an android device.
257257

258-
![](PopupLayout_images/FooterTemplate.png)
258+
![Customized footer in Xamarin.Android popup layout](PopupLayout_images/FooterTemplate.png)
259259

260260
## Styles
261261

@@ -318,7 +318,7 @@ protected override void OnCreate(Bundle bundle)
318318

319319
Executing the above codes renders the following output in an android device.
320320

321-
![](PopupLayout_images/HeaderCustomization.png)
321+
[Customized header elements in Xamarin.Android popup layout](PopupLayout_images/HeaderCustomization.png)
322322

323323
### Customizing footer elements
324324

@@ -377,7 +377,7 @@ protected override void OnCreate(Bundle bundle)
377377

378378
Executing the above codes renders the following output in an android device.
379379

380-
![](PopupLayout_images/FooterCustomization.png)
380+
![Customized footer elements in Xamarin.Android popup layout](PopupLayout_images/FooterCustomization.png)
381381

382382
### Border customization
383383

@@ -422,4 +422,4 @@ protected override void OnCreate(Bundle bundle)
422422

423423
Executing the above codes renders the following output in an android device.
424424

425-
![](PopupLayout_images/BorderCustomization.png)
425+
![Customized border in Xamarin.Android popup layout](PopupLayout_images/BorderCustomization.png)

xamarin-android/SfPopupLayout/Popup-positioning.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
layout: post
33
title: Popup positioning | SfPopupLayout |Xamarin.Android | Syncfusion
4-
description: Positioning capabilities of SfPopupLayout
4+
description: Learn here all about pop-up positioning support in Syncfusion Xamarin.Android popup layout control, its elements and more.
55
platform: Xamarin.Android
66
control: SfPopupLayout
77
documentation: ug
88
---
99

10-
# Pop-up Positioning
10+
# Pop-up Positioning in Xamarin.Android popup layout
1111

1212
SfPopupLayout allows you to show the Popup content at various position based on the requirement.
1313

@@ -96,7 +96,7 @@ namespace GettingStarted
9696

9797
Executing the above codes renders the following output in an android device.
9898

99-
![](GettingStarted_images/IsOpen_Property.png)
99+
![Center positioning using IsOpen Property in Xamarin.Android Popup Layout](GettingStarted_images/IsOpen_Property.png)
100100

101101
To open the SfPopupLayout, use the `SfPopupLayout.Show()` as in the following code sample.
102102

@@ -143,7 +143,7 @@ namespace GettingStarted
143143

144144
Executing the above codes renders the following output in an android device.
145145

146-
![](GettingStarted_images/ShowPopup.png)
146+
![Show Popup positioning in Xamarin.Android popup Layout](GettingStarted_images/ShowPopup.png)
147147

148148
## Absolute Positioning
149149

@@ -196,7 +196,7 @@ namespace GettingStarted
196196

197197
Executing the above codes renders the following output in an android device.
198198

199-
![](GettingStarted_images/ShowAtXYPosition.png)
199+
![Show At XY Position in Xamarin.Android Popup Layout](GettingStarted_images/ShowAtXYPosition.png)
200200

201201
### Show At Touch Point
202202

@@ -245,7 +245,7 @@ namespace GettingStarted
245245

246246
Executing the above codes renders the following output in an android device.
247247

248-
![](GettingStarted_images/ShowAtTouchPoint.png)
248+
![Shown at touch point in Xamarin.Android Popup Layout](GettingStarted_images/ShowAtTouchPoint.png)
249249

250250
N> SfPopupLayout.ShowAtTouchPoint() is not applicable for displaying pop-up when the SfPopupLayout is not set as root view .
251251

@@ -305,7 +305,7 @@ namespace GettingStarted
305305

306306
Executing the above codes renders the following output in an android device.
307307

308-
![](GettingStarted_images/RelativeToBottom.png)
308+
![Relative To Bottom in Xamarin.Android Popup Layout](GettingStarted_images/RelativeToBottom.png)
309309

310310
### Absolute relative positioning
311311

@@ -363,7 +363,7 @@ namespace GettingStarted
363363

364364
Executing the above codes renders the following output in an android device.
365365

366-
![](GettingStarted_images/AbsoluteRelativePosition.png)
366+
![Positions in Xamarin.Android Popup Layout](GettingStarted_images/AbsoluteRelativePosition.png)
367367

368368
You can pass both negative and positive values as parameters to the `SfPopupLayout.ShowRelativeToView(View, RelativePosition, x-position, y-position)`. The pop-up will be positioned by considering the relative position as (0, 0) the center point. For example, if you have set the `RelativePosition` as `RelativePosition.BottomRight` and `RelativeView` as a button, bottom right corner of the button will be considered as the 0, 0 point and a negative x-position value will place the pop-up to the left of that point and a positive x-position value will place the pop-up to the right of that point. The same applies for y-position also.
369369

0 commit comments

Comments
 (0)