Skip to content

Commit 8ad5369

Browse files
Merge pull request #3744 from syncfusion-content/Maui-scheduler-segment-ug
Maui Scheduler and Segment UG API link updated
2 parents 16908f9 + ad9d5e2 commit 8ad5369

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

MAUI/Scheduler/drag-and-drop-appointments.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ Using the [AppointmentDrop](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.
9898
[DropTime](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Scheduler.AppointmentDropEventArgs.html#Syncfusion_Maui_Scheduler_AppointmentDropEventArgs_DropTime) - Get or set the date and time at which the appointment is being dropped.
9999
[SourceResource](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Scheduler.AppointmentDropEventArgs.html#Syncfusion_Maui_Scheduler_AppointmentDropEventArgs_SourceResource) - Get the original resource of the appointment that is being dropped.
100100
[TargetResource](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Scheduler.AppointmentDropEventArgs.html#Syncfusion_Maui_Scheduler_AppointmentDropEventArgs_TargetResource) - Get the resource into which the appointment is being dropped.
101-
`IsDroppingToAllDay` - Gets a value indicating whether an appointment is being dropped into an all-day slot.
101+
[IsDroppingToAllDay](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Scheduler.AppointmentDropEventArgs.html#Syncfusion_Maui_Scheduler_AppointmentDropEventArgs_IsDroppingToAllDay) - Gets a value indicating whether an appointment is being dropped into an all-day slot.
102102

103103
{% tabs %}
104104
{% highlight c# %}
@@ -118,7 +118,7 @@ private void OnSchedulerAppointmentDrop(object? sender, AppointmentDropEventArgs
118118

119119
### Prevent dropping appointments into the all-day panel
120120

121-
You can prevent appointments from being dropped into the all-day panel by checking the `IsDroppingToAllDay` property in the `AppointmentDrop` event and canceling the operation.
121+
You can prevent appointments from being dropped into the all-day panel by checking the [IsDroppingToAllDay](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Scheduler.AppointmentDropEventArgs.html#Syncfusion_Maui_Scheduler_AppointmentDropEventArgs_IsDroppingToAllDay) property in the [AppointmentDrop](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Scheduler.SfScheduler.html#Syncfusion_Maui_Scheduler_SfScheduler_AppointmentDrop) event and canceling the operation.
122122

123123
{% tabs %}
124124
{% highlight c# %}

MAUI/Scheduler/month-view.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ this.Scheduler.MonthView.AppointmentIndicatorCount = 1;
8585

8686
## Appointment indicator size
8787

88-
The scheduler month view allows you to customize the size of the appointment indicator by using the `AppointmentIndicatorSize` property of the [MonthView](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Scheduler.SchedulerMonthView.html). By default, the `AppointmentIndicatorSize` is set to 6d.
88+
The scheduler month view allows you to customize the size of the appointment indicator by using the [AppointmentIndicatorSize](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Scheduler.SchedulerMonthView.html#Syncfusion_Maui_Scheduler_SchedulerMonthView_AppointmentIndicatorSize) property of the [MonthView](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Scheduler.SchedulerMonthView.html). By default, the [AppointmentIndicatorSize](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Scheduler.SchedulerMonthView.html#Syncfusion_Maui_Scheduler_SchedulerMonthView_AppointmentIndicatorSize) is set to 6d.
8989

9090
{% tabs %}
9191
{% highlight XAML hl_lines="5" %}

MAUI/Scheduler/resource-view.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ this.Scheduler.ResourceView.ResourceHeaderHeight = 100;
267267

268268
## Resource Header Width in Timeline View
269269

270-
In the timelineday, timelineweek, and timeline work week views, resources are arranged vertically. The width of the resource headers can be customized using the `ResourceHeaderWidth` property of the [`SchedulerResourceView`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Scheduler.SchedulerResourceView.html#Syncfusion_Maui_Scheduler_SchedulerResourceView_Resources) class.
270+
In the timelineday, timelineweek, and timeline work week views, resources are arranged vertically. The width of the resource headers can be customized using the [ResourceHeaderWidth](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Scheduler.SchedulerResourceView.html#Syncfusion_Maui_Scheduler_SchedulerResourceView_ResourceHeaderWidth) property of the [`SchedulerResourceView`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Scheduler.SchedulerResourceView.html#Syncfusion_Maui_Scheduler_SchedulerResourceView_Resources) class.
271271

272272
{% tabs %}
273273
{% highlight xaml tabtitle="MainPage.xaml" hl_lines="3" %}

MAUI/Segmented-Control/customization.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ Use the [SegmentTemplate](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Bu
439439

440440
## Customize selected segment item appearance using DataTemplate
441441

442-
Use the `IsSelected` property of `SfSegmentItem` to customize the selected segment item appearance. The following example code shows how to create a custom segmented control using a data template.
442+
Use the [IsSelected](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfSegmentItem.html#Syncfusion_Maui_Buttons_SfSegmentItem_IsSelected) property of [SfSegmentItem](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SegmentTappedEventArgs.html#Syncfusion_Maui_Buttons_SegmentTappedEventArgs_SegmentItem) to customize the selected segment item appearance. The following example code shows how to create a custom segmented control using a data template.
443443

444444
{% tabs %}
445445
{% highlight XAML %}
@@ -523,6 +523,6 @@ public class TextColorConverter : IValueConverter
523523
{% endtabs %}
524524

525525
N>
526-
* The BindingContext of the `SegmentTemplate` is the `SfSegmentItem`.
526+
* The BindingContext of the [SegmentTemplate](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfSegmentedControl.html#Syncfusion_Maui_Buttons_SfSegmentedControl_SegmentTemplate) is the [SfSegmentItem](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SegmentTappedEventArgs.html#Syncfusion_Maui_Buttons_SegmentTappedEventArgs_SegmentItem).
527527

528528
![Customization for the selected segment item in .NET MAUI Segmented control.](images/customization/selected-segment.png)

MAUI/Segmented-Control/events.md

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

1010
# Events in .NET MAUI Segmented Control (SfSegmentedControl)
1111

12-
The Segmented Control supports the `Tapped,` and `SelectionChanged` events to interact with .NET MAUI Segmented Control
12+
The Segmented Control supports the [Tapped](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfSegmentedControl.html#Syncfusion_Maui_Buttons_SfSegmentedControl_Tapped), and [SelectionChanged](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfSegmentedControl.html#Syncfusion_Maui_Buttons_SfSegmentedControl_SelectionChanged) events to interact with .NET MAUI Segmented Control
1313

1414
## Tapped
1515

1616
A Tapped event occurs, each time a segment tapped.
1717

1818
Below is a list of the arguments:
1919

20-
* `Sender`: This contains the `SfSegmentedControl` object.
20+
* `Sender`: This contains the [SfSegmentedControl](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfSegmentedControl.html#Syncfusion_Maui_Buttons_SfSegmentedControl__ctor) object.
2121

22-
* `Tapped`: The tapped action performed on an Segment can be found in the `SegmentTappedEventArgs`, you can see details about the `SegmentItem`.
22+
* `Tapped`: The tapped action performed on an Segment can be found in the [SegmentTappedEventArgs](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SegmentTappedEventArgs.html), you can see details about the [SegmentItem](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SegmentTappedEventArgs.html#Syncfusion_Maui_Buttons_SegmentTappedEventArgs_SegmentItem).
2323

2424
## SelectionChanged
2525

MAUI/Segmented-Control/selection.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,11 +215,11 @@ public partial class MainPage : ContentPage
215215

216216
## Selection Mode
217217

218-
You can select the segment item by tapping the item in the Segmented Control. SfSegmentedControl provides two types of modes such as `Single` and `SingleDeselect`. The default `SelectionMode` is `Single`.
218+
You can select the segment item by tapping the item in the Segmented Control. SfSegmentedControl provides two types of modes such as [Single](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SegmentSelectionMode.html) and [SingleDeselect](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SegmentSelectionMode.html). The default [SelectionMode](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SegmentSelectionMode.html) is `Single`.
219219

220220
### Single Selection
221221

222-
The Single selection can be performed in the `Segmented Control` by setting the `SelectionMode` property to `Single`. In this selection, you can select a single item at a time in the segmented control.
222+
The Single selection can be performed in the [Segmented Control](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfSegmentedControl.html) by setting the [SelectionMode](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SegmentSelectionMode.html) property to [Single](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SegmentSelectionMode.html). In this selection, you can select a single item at a time in the segmented control.
223223

224224
{% tabs %}
225225
{% highlight XAML %}

0 commit comments

Comments
 (0)