Skip to content

Commit 95f877f

Browse files
Merge pull request #283 from Syncfusion-Content/hotfix/hotfix-v29.1.33
DOCINFRA-2341_merged_using_automation
2 parents 6bdf32e + 4ac7066 commit 95f877f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+220
-220
lines changed

maui-toolkit/Accordion/appearance.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The .NET MAUI Accordion comes with built-in support for customizing the appearan
1313

1414
## Header icon position
1515

16-
The [SfAccordion](https://help.syncfusion.com/cr/maui-toolkit/Syncfusion.Maui.Toolkit.Accordion.SfAccordion.html?tabs=tabid-1) allows you to customize the position of the header icon in each accordion item using the [HeaderIconPosition](https://help.syncfusion.com/cr/maui-toolkit/Syncfusion.Maui.Toolkit.Accordion.SfAccordion.html#Syncfusion_Maui_Toolkit_Accordion_SfAccordion_HeaderIconPosition) property. By default, the header icon position is set to `End`.
16+
The `SfAccordion` allows you to customize the position of the header icon in each accordion item using the `HeaderIconPosition` property. By default, the header icon position is set to `End`.
1717

1818
{% tabs %}
1919
{% highlight xaml hl_lines="2" %}
@@ -27,7 +27,7 @@ accordion.HeaderIconPosition = Syncfusion.Maui.Toolkit.Expander.ExpanderIconPosi
2727

2828
## Header background color customization
2929

30-
The `SfAccordion` allows you to customize the background color of the expander header by using the [HeaderBackground](https://help.syncfusion.com/cr/maui-toolkit/Syncfusion.Maui.Toolkit.Accordion.AccordionItem.html#Syncfusion_Maui_Toolkit_Accordion_AccordionItem_HeaderBackground) property.
30+
The `SfAccordion` allows you to customize the background color of the expander header by using the `HeaderBackground` property.
3131

3232
{% tabs %}
3333
{% highlight xaml hl_lines="3" %}
@@ -63,7 +63,7 @@ public AccordionItem GenerateAccordionItem()
6363

6464
## Icon color customization
6565

66-
The `SfAccordion` allows you to customize the color of the expander icon by using the [HeaderIconColor](https://help.syncfusion.com/cr/maui-toolkit/Syncfusion.Maui.Toolkit.Accordion.AccordionItem.html#Syncfusion_Maui_Toolkit_Accordion_AccordionItem_HeaderIconColor) property.
66+
The `SfAccordion` allows you to customize the color of the expander icon by using the `HeaderIconColor` property.
6767

6868
{% tabs %}
6969
{% highlight xaml hl_lines="3" %}
@@ -99,7 +99,7 @@ public AccordionItem GenerateAccordionItem()
9999

100100
## Visual State Manager
101101

102-
The appearance of the [SfAccordion](https://help.syncfusion.com/cr/maui-toolkit/Syncfusion.Maui.Toolkit.Accordion.SfAccordion.html) can be customized using the following `VisualStates`:
102+
The appearance of the `SfAccordion` can be customized using the following `VisualStates`:
103103

104104
* Expanded
105105
* Collapsed

maui-toolkit/Accordion/bindablelayout.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ documentation: ug
99

1010
# BindableLayout in .NET MAUI Accordion (SfAccordion)
1111

12-
The [SfAccordion](https://help.syncfusion.com/cr/maui-toolkit/Syncfusion.Maui.Toolkit.Accordion.SfAccordion.html) control allows the use of [.NET MAUI BindableLayout](https://learn.microsoft.com/en-us/dotnet/maui/user-interface/layouts/bindablelayout) to bind a data collection using `BindableLayout.ItemsSource` and `BindableLayout.ItemTemplate` properties.
12+
The `SfAccordion` control allows the use of [.NET MAUI BindableLayout](https://learn.microsoft.com/en-us/dotnet/maui/user-interface/layouts/bindablelayout) to bind a data collection using `BindableLayout.ItemsSource` and `BindableLayout.ItemTemplate` properties.
1313

1414
## Creating Data Model
1515

16-
Create a simple data model to bind the data for [SfAccordion](https://help.syncfusion.com/cr/maui-toolkit/Syncfusion.Maui.Toolkit.Accordion.SfAccordion.html), as shown in the following code example, in a new class file. Save it as `EmployeeInfo.cs`.
16+
Create a simple data model to bind the data for `SfAccordion`, as shown in the following code example, in a new class file. Save it as `EmployeeInfo.cs`.
1717

1818
{% tabs %}
1919
{% highlight c# %}
@@ -231,7 +231,7 @@ BindableLayout.SetItemsSource(Accordion, viewModel.Employees);
231231

232232
## Defining the AccordionItem
233233

234-
The `SfAccordion` accepts the [AccordionItem](https://help.syncfusion.com/cr/maui-toolkit/Syncfusion.Maui.Toolkit.Accordion.AccordionItem.html?tabs=tabid-1) as its child element. The appearance of each `AccordionItem` can be defined by setting the `BindableLayout.ItemTemplate` property.
234+
The `SfAccordion` accepts the `AccordionItem` as its child element. The appearance of each `AccordionItem` can be defined by setting the `BindableLayout.ItemTemplate` property.
235235

236236
{% tabs %}
237237
{% highlight xaml hl_lines="2 3" %}

maui-toolkit/Accordion/events.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@ documentation: ug
1111

1212
There are four built-in events in the SfAccordion control namely:
1313

14-
* [Expanding](https://help.syncfusion.com/cr/maui-toolkit/Syncfusion.Maui.Toolkit.Accordion.SfAccordion.html#Syncfusion_Maui_Toolkit_Accordion_SfAccordion_Expanding)
15-
* [Expanded](https://help.syncfusion.com/cr/maui-toolkit/Syncfusion.Maui.Toolkit.Accordion.SfAccordion.html#Syncfusion_Maui_Toolkit_Accordion_SfAccordion_Expanded)
16-
* [Collapsing](https://help.syncfusion.com/cr/maui-toolkit/Syncfusion.Maui.Toolkit.Accordion.SfAccordion.html#Syncfusion_Maui_Toolkit_Accordion_SfAccordion_Collapsing)
17-
* [Collapsed](https://help.syncfusion.com/cr/maui-toolkit/Syncfusion.Maui.Toolkit.Accordion.SfAccordion.html#Syncfusion_Maui_Toolkit_Accordion_SfAccordion_Collapsed)
14+
* `Expanding`
15+
* `Expanded`
16+
* `Collapsing`
17+
* `Collapsed`
1818

1919
### Expanding Event
2020

21-
The [Expanding](https://help.syncfusion.com/cr/maui-toolkit/Syncfusion.Maui.Toolkit.Accordion.SfAccordion.html#Syncfusion_Maui_Toolkit_Accordion_SfAccordion_Expanding) event will be triggered when the accordion item is being expanded. It can cancel the expansion using [ExpandingAndCollapsingEventArgs](https://help.syncfusion.com/cr/maui-toolkit/Syncfusion.Maui.Toolkit.Accordion.ExpandingAndCollapsingEventArgs.html), which contains the following property:
21+
The `Expanding` event will be triggered when the accordion item is being expanded. It can cancel the expansion using `ExpandingAndCollapsingEventArgs`, which contains the following property:
2222

2323
* `Cancel`: Indicates that the expansion or collapse action should be cancelled.
24-
* [Index](https://help.syncfusion.com/cr/maui-toolkit/Syncfusion.Maui.Toolkit.Accordion.ExpandingAndCollapsingEventArgs.html#Syncfusion_Maui_Toolkit_Accordion_ExpandingAndCollapsingEventArgs_Index): Gets the index of the current expanding accordion item.
24+
* `Index`: Gets the index of the current expanding accordion item.
2525

2626
{% tabs %}
2727
{% highlight xaml tabtitle="MainPage.xaml" hl_lines="1" %}
@@ -41,7 +41,7 @@ private void accordion_Expanding(object sender, Syncfusion.Maui.Toolkit.Accordio
4141

4242
### Expanded Event
4343

44-
The [Expanded](https://help.syncfusion.com/cr/maui-toolkit/Syncfusion.Maui.Toolkit.Accordion.SfAccordion.html#Syncfusion_Maui_Toolkit_Accordion_SfAccordion_Expanded) event is triggered when an accordion item is fully expanded. You can execute your own code when this event occurs.
44+
The `Expanded` event is triggered when an accordion item is fully expanded. You can execute your own code when this event occurs.
4545

4646
{% tabs %}
4747
{% highlight xaml tabtitle="MainPage.xaml" hl_lines="1" %}
@@ -61,10 +61,10 @@ private void accordion_Expanded(object sender, Syncfusion.Maui.Toolkit.Accordion
6161

6262
### Collapsing Event
6363

64-
The [Collapsing](https://help.syncfusion.com/cr/maui-toolkit/Syncfusion.Maui.Toolkit.Accordion.SfAccordion.html#Syncfusion_Maui_Toolkit_Accordion_SfAccordion_Collapsing) event will be triggered when the expander control is being collapsed. You can cancel the collapsing using [ExpandingAndCollapsingEventArgs](https://help.syncfusion.com/cr/maui-toolkit/Syncfusion.Maui.Toolkit.Accordion.ExpandingAndCollapsingEventArgs.html), which contains the following property:
64+
The `Collapsing` event will be triggered when the expander control is being collapsed. You can cancel the collapsing using `ExpandingAndCollapsingEventArgs`, which contains the following property:
6565

6666
* `Cancel`: Indicates that the expansion or collapse action should be cancelled.
67-
* [Index](https://help.syncfusion.com/cr/maui-toolkit/Syncfusion.Maui.Toolkit.Accordion.ExpandingAndCollapsingEventArgs.html#Syncfusion_Maui_Toolkit_Accordion_ExpandingAndCollapsingEventArgs_Index): Gets the index of the current collapsing accordion item.
67+
* `Index`: Gets the index of the current collapsing accordion item.
6868

6969
{% tabs %}
7070
{% highlight xaml tabtitle="MainPage.xaml" hl_lines="1" %}
@@ -84,7 +84,7 @@ private void accordion_Collapsing(object sender, Syncfusion.Maui.Toolkit.Accordi
8484

8585
### Collapsed Event
8686

87-
The [Collapsed](https://help.syncfusion.com/cr/maui-toolkit/Syncfusion.Maui.Toolkit.Accordion.SfAccordion.html#Syncfusion_Maui_Toolkit_Accordion_SfAccordion_Collapsed) event is triggered when an accordion item is collapsed. You can execute your own code when this event occurs.
87+
The `Collapsed` event is triggered when an accordion item is collapsed. You can execute your own code when this event occurs.
8888

8989
{% tabs %}
9090
{% highlight xaml tabtitle="MainPage.xaml" hl_lines="1" %}

maui-toolkit/Accordion/getting-started.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ documentation: ug
99

1010
# Getting Started with MAUI Accordion
1111

12-
This section guides you through setting up and configuring a [Accordion](https://help.syncfusion.com/cr/maui-toolkit/Syncfusion.Maui.Toolkit.Accordion.SfAccordion.html?tabs=tabid-1) in your .NET MAUI application. Follow the steps below to add a basic Accordion to your project.
12+
This section guides you through setting up and configuring a `Accordion` in your .NET MAUI application. Follow the steps below to add a basic Accordion to your project.
1313

1414
{% tabcontents %}
1515
{% tabcontent Visual Studio %}
@@ -61,7 +61,7 @@ public static class MauiProgram
6161
## Step 4: Add a Basic Accordion control
6262

6363
1. To initialize the control, import the `Syncfusion.Maui.Toolkit.Accordion` namespace into your code.
64-
2. Initialize [SfAccordion](https://help.syncfusion.com/cr/maui-toolkit/Syncfusion.Maui.Toolkit.Accordion.SfAccordion.html?tabs=tabid-1) Control.
64+
2. Initialize SfAccordion Control.
6565

6666
{% tabs %}
6767
{% highlight xaml hl_lines="4" %}
@@ -139,7 +139,7 @@ public static class MauiProgram
139139
## Step 4: Add a Basic Accordion control
140140

141141
1. To initialize the control, import the `Syncfusion.Maui.Toolkit.Accordion` namespace into your code.
142-
2. Initialize [SfAccordion](https://help.syncfusion.com/cr/maui-toolkit/Syncfusion.Maui.Toolkit.Accordion.SfAccordion.html?tabs=tabid-1) Control.
142+
2. Initialize SfAccordion Control.
143143

144144
{% tabs %}
145145
{% highlight xaml hl_lines="4" %}
@@ -216,7 +216,7 @@ public static class MauiProgram
216216
## Step 4: Add a Basic Accordion control
217217

218218
1. To initialize the control, import the `Syncfusion.Maui.Toolkit.Accordion` namespace into your code.
219-
2. Initialize [SfAccordion](https://help.syncfusion.com/cr/maui-toolkit/Syncfusion.Maui.Toolkit.Accordion.SfAccordion.html?tabs=tabid-1) Control.
219+
2. Initialize SfAccordion Control.
220220

221221
{% tabs %}
222222
{% highlight xaml hl_lines="4" %}
@@ -245,7 +245,7 @@ public partial class MainPage : ContentPage
245245

246246
## Step 5: Define the accordion items
247247

248-
Create an [AccordionItem](https://help.syncfusion.com/cr/maui-toolkit/Syncfusion.Maui.Toolkit.Accordion.AccordionItem.html?tabs=tabid-1) instance containing a [Header](https://help.syncfusion.com/cr/maui-toolkit/Syncfusion.Maui.Toolkit.Accordion.AccordionItem.html#Syncfusion_Maui_Toolkit_Accordion_AccordionItem_Header) and [Content](https://help.syncfusion.com/cr/maui-toolkit/Syncfusion.Maui.Toolkit.Accordion.AccordionItem.html#Syncfusion_Maui_Toolkit_Accordion_AccordionItem_Content), and then add it to the [Items](https://help.syncfusion.com/cr/maui-toolkit/Syncfusion.Maui.Toolkit.Accordion.SfAccordion.html#Syncfusion_Maui_Toolkit_Accordion_SfAccordion_Items) collection of SfAccordion.
248+
Create an `AccordionItem` instance containing a `header` and `content`, and then add it to the `Items` collection of SfAccordion.
249249

250250
In this example, a Grid is loaded in both the header and content of accordion items.
251251

@@ -334,7 +334,7 @@ N> When adding the template control inside the `StackLayout` or `Grid` with a he
334334

335335
## Animation duration
336336

337-
The `SfAccordion` allows you to customize the duration of the expanding and collapsing animations for accordion items by using the [AnimationDuration](https://help.syncfusion.com/cr/maui-toolkit/Syncfusion.Maui.Toolkit.Accordion.SfAccordion.html#Syncfusion_Maui_Toolkit_Accordion_SfAccordion_AnimationDuration) property. By default, the animation duration is set to `200 milliseconds`.
337+
The `SfAccordion` allows you to customize the duration of the expanding and collapsing animations for accordion items by using the `AnimationDuration` property. By default, the animation duration is set to `200 milliseconds`.
338338

339339
{% tabs %}
340340
{% highlight xaml hl_lines="2" %}
@@ -348,7 +348,7 @@ The `SfAccordion` allows you to customize the duration of the expanding and coll
348348

349349
## Animation easing
350350

351-
You can customize the rate of change of a parameter over time or the animation style of an accordion item by using the [AnimationEasing](https://help.syncfusion.com/cr/maui-toolkit/Syncfusion.Maui.Toolkit.Accordion.SfAccordion.html#Syncfusion_Maui_Toolkit_Accordion_SfAccordion_AnimationEasing) property. By default, the animation easing is set to `Linear`.
351+
You can customize the rate of change of a parameter over time or the animation style of an accordion item by using the `AnimationEasing` property. By default, the animation easing is set to `Linear`.
352352

353353
{% tabs %}
354354
{% highlight xaml hl_lines="2" %}
@@ -362,7 +362,7 @@ You can customize the rate of change of a parameter over time or the animation s
362362

363363
## Auto scroll position
364364

365-
The `SfAccordion` allows you to customize the scroll position of the expanded accordion item using the [AutoScrollPosition](https://help.syncfusion.com/cr/maui-toolkit/Syncfusion.Maui.Toolkit.Accordion.SfAccordion.html#Syncfusion_Maui_Toolkit_Accordion_SfAccordion_AutoScrollPosition) property. By default, the auto-scroll position is set to `MakeVisible`.
365+
The `SfAccordion` allows you to customize the scroll position of the expanded accordion item using the `AutoScrollPosition` property. By default, the auto-scroll position is set to `MakeVisible`.
366366

367367
{% tabs %}
368368
{% highlight xaml hl_lines="2" %}
@@ -376,7 +376,7 @@ The `SfAccordion` allows you to customize the scroll position of the expanded ac
376376

377377
## Bring an accordion item into view
378378

379-
The [BringIntoView](https://help.syncfusion.com/cr/maui-toolkit/Syncfusion.Maui.Toolkit.Accordion.SfAccordion.html#Syncfusion_Maui_Toolkit_Accordion_SfAccordion_BringIntoView_Syncfusion_Maui_Toolkit_Accordion_AccordionItem_) method is used to bring a specific item into view by scrolling to it programmatically.
379+
The `BringIntoView` method is used to bring a specific item into view by scrolling to it programmatically.
380380

381381
{% tabs %}
382382
{% highlight xaml %}
@@ -455,7 +455,7 @@ private void Button_Clicked(object sender, EventArgs e)
455455

456456
## Expand mode
457457

458-
You can expand single or multiple items using the [ExpandMode](https://help.syncfusion.com/cr/maui-toolkit/Syncfusion.Maui.Toolkit.Accordion.SfAccordion.html#Syncfusion_Maui_Toolkit_Accordion_SfAccordion_ExpandMode) property. By default, the expanded mode is set to `Single`.
458+
You can expand single or multiple items using the `ExpandMode` property. By default, the expanded mode is set to `Single`.
459459

460460
{% tabs %}
461461
{% highlight xaml hl_lines="2" %}
@@ -469,7 +469,7 @@ You can expand single or multiple items using the [ExpandMode](https://help.sync
469469

470470
## Item spacing
471471

472-
The `SfAccordion` allows you to customize the vertical spacing between the accordion items by using the [ItemSpacing](https://help.syncfusion.com/cr/maui-toolkit/Syncfusion.Maui.Toolkit.Accordion.SfAccordion.html#Syncfusion_Maui_Toolkit_Accordion_SfAccordion_ItemSpacing) property.
472+
The `SfAccordion` allows you to customize the vertical spacing between the accordion items by using the `ItemSpacing` property.
473473

474474
{% tabs %}
475475
{% highlight xaml hl_lines="2" %}

maui-toolkit/Bottom-Sheet/BottomSheet-Content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ documentation: ug
4949
</VerticalStackLayout>
5050
</bottomSheet:SfBottomSheet.BottomSheetContent>
5151
</bottomSheet:SfBottomSheet>
52-
52+
5353
{% endhighlight %}
5454
{% highlight c# %}
5555

maui-toolkit/Bottom-Sheet/Swipe-Gesture.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The [EnableSwiping](https://help.syncfusion.com/cr/maui-toolkit/Syncfusion.Maui.
2222
<!--Add your content here-->
2323
</bottomSheet:SfBottomSheet.BottomSheetContent>
2424
</bottomSheet:SfBottomSheet>
25-
25+
2626
{% endhighlight %}
2727
{% highlight c# %}
2828

maui-toolkit/Button/Customization.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
3-
title: Customization in .NET MAUI Button control | Syncfusion®
4-
description: Learn here all about Customization support in Syncfusion® .NET MAUI Button (SfButton) control and more.
3+
title: Customization in .NET MAUI Button control | Syncfusion<sup>®</sup>
4+
description: Learn here all about Customization support in Syncfusion<sup>®</sup> .NET MAUI Button (SfButton) control and more.
55
platform: maui
66
control: Sfbutton
77
documentation: ug

maui-toolkit/Button/Events.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
3-
title: Event in .NET MAUI Button Control | Syncfusion®
4-
description: Learn here about Event support in the Syncfusion® .NET MAUI Button (SfButton) control, its elements and more.
3+
title: Event in .NET MAUI Button Control | Syncfusion<sup>®</sup>
4+
description: Learn here about Event support in the Syncfusion<sup>®</sup> .NET MAUI Button (SfButton) control, its elements and more.
55
platform: maui
66
control: SfButton
77
documentation: ug

maui-toolkit/Button/Getting-Started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
3-
title: Getting Started with .NET MAUI Button | Syncfusion®
4-
description: Learn here about getting started with the Syncfusion® .NET MAUI Button (SfButton) control, its elements and more.
3+
title: Getting Started with .NET MAUI Button | Syncfusion<sup>®</sup>
4+
description: Learn here about getting started with the Syncfusion<sup>®</sup> .NET MAUI Button (SfButton) control, its elements and more.
55
platform: MAUI
66
control: SfButton
77
documentation: ug

maui-toolkit/Button/Overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
3-
title: About .NET MAUI Control | Syncfusion®
4-
description: Learn here about introduction of the Syncfusion® .NET MAUI Button (SfButton) control, its elements and more.
3+
title: About .NET MAUI Control | Syncfusion<sup>®</sup>
4+
description: Learn here about introduction of the Syncfusion<sup>®</sup> .NET MAUI Button (SfButton) control, its elements and more.
55
platform: maui
66
control: SfButton
77
documentation: ug

0 commit comments

Comments
 (0)