diff --git a/MAUI/SmartScheduler/events.md b/MAUI/SmartScheduler/events.md
index 8a64de17d..25e8847d4 100644
--- a/MAUI/SmartScheduler/events.md
+++ b/MAUI/SmartScheduler/events.md
@@ -1,6 +1,6 @@
---
layout: post
-title: Events .NET MAUI Smart Scheduler control | Syncfusion
+title: Events support in .NET MAUI Smart Scheduler control | Syncfusion
description: Learn here all about Events support in Syncfusion® .NET MAUI Smart Scheduler(SfSmartScheduler) control.
platform: MAUI
control: SfSmartScheduler
diff --git a/MAUI/SmartScheduler/methods.md b/MAUI/SmartScheduler/methods.md
new file mode 100644
index 000000000..ffc216f96
--- /dev/null
+++ b/MAUI/SmartScheduler/methods.md
@@ -0,0 +1,93 @@
+---
+layout: post
+title: Methods support in .NET MAUI Smart Scheduler control | Syncfusion
+description: Learn here all about methods support in Syncfusion® .NET MAUI Smart Scheduler(SfSmartScheduler) control.
+platform: MAUI
+control: SfSmartScheduler
+documentation: ug
+---
+
+# Methods in .NET MAUI Smart Scheduler (SfSmartScheduler)
+
+The `SfSmartScheduler` supports the `ResetAssistView`, `CloseAssistView` and `OpenAssistView` methods to reset, close or open assist view programmatically.
+
+## Reset assist view
+
+The `SfSmartScheduler` control provides the `ResetAssistView()` method to reset assist view programmatically using an event.
+
+{% tabs %}
+{% highlight xaml tabtitle="MainPage.xaml" %}
+
+
+
+
+
+
+
+
+
+
+{% endhighlight %}
+{% highlight c# tabtitle="MainPage.xaml.cs" hl_lines="4" %}
+
+private void Button_Clicked(object sender, EventArgs e)
+{
+ this.smartScheduler.ResetAssistView();
+}
+
+{% endhighlight %}
+{% endtabs %}
+
+## Close assist view
+
+The `SfSmartScheduler` control provides the `CloseAssistView()` method to close assist view programmatically using an event.
+
+{% tabs %}
+{% highlight xaml tabtitle="MainPage.xaml" %}
+
+
+
+
+
+
+
+
+
+
+{% endhighlight %}
+{% highlight c# tabtitle="MainPage.xaml.cs" hl_lines="4" %}
+
+private void Button_Clicked(object sender, EventArgs e)
+{
+ this.smartScheduler.CloseAssistView();
+}
+
+{% endhighlight %}
+{% endtabs %}
+
+## Open assist view
+
+The `SfSmartScheduler` control provides the `OpenAssistView()` method to open assist view programmatically using an event.
+
+{% tabs %}
+{% highlight xaml tabtitle="MainPage.xaml" %}
+
+
+
+
+
+
+
+
+
+
+{% endhighlight %}
+{% highlight c# tabtitle="MainPage.xaml.cs" hl_lines="4" %}
+
+private void Button_Clicked(object sender, EventArgs e)
+{
+ this.smartScheduler.OpenAssistView();
+}
+
+{% endhighlight %}
+{% endtabs %}
\ No newline at end of file
diff --git a/MAUI/SmartScheduler/styles.md b/MAUI/SmartScheduler/styles.md
index d92a37330..8606557a3 100644
--- a/MAUI/SmartScheduler/styles.md
+++ b/MAUI/SmartScheduler/styles.md
@@ -1,6 +1,6 @@
---
layout: post
-title: About .NET MAUI Smart Scheduler control | Syncfusion
+title: Styles support .NET MAUI Smart Scheduler control | Syncfusion
description: Learn here all about Styles support in Syncfusion® .NET MAUI Smart Scheduler(SfSmartScheduler) control.
platform: MAUI
control: SfSmartScheduler
@@ -12,7 +12,7 @@ documentation: ug
You can style the elements of the `.NET MAUI Smart Scheduler` assist view using the `PlaceholderColor`, `AssistViewHeaderTextColor`, `AssistViewHeaderBackground`, `AssistViewHeaderFontSize`,`AssistViewHeaderFontFamily`, `AssistViewHeaderFontAttributes` and `AssistViewHeaderFontAutoScalingEnabled` properties of the `AssistStyle`.
{% tabs %}
-{% highlight XAML hl_lines="5 14" %}
+{% highlight XAML hl_lines="5 13" %}
@@ -24,8 +24,7 @@ You can style the elements of the `.NET MAUI Smart Scheduler` assist view using
AssistViewHeaderFontSize="24"
AssistViewHeaderFontAttributes="Bold"
AssistViewHeaderFontFamily="OpenSansSemibold"
- AssistViewHeaderFontAutoScalingEnabled="True"
- />
+ AssistViewHeaderFontAutoScalingEnabled="True" />
diff --git a/MAUI/SmartScheduler/working-with-smart-scheduler.md b/MAUI/SmartScheduler/working-with-smart-scheduler.md
index 345759066..9df692421 100644
--- a/MAUI/SmartScheduler/working-with-smart-scheduler.md
+++ b/MAUI/SmartScheduler/working-with-smart-scheduler.md
@@ -206,22 +206,42 @@ this.Content = smartScheduler;
The assist view suggested prompts can be customized by using the `SuggestedPrompts` property of the `AssistViewSettings`. By default, the `SuggestedPrompts` property is set to null.
{% tabs %}
-{% highlight XAML hl_lines="4" %}
+{% highlight XAML hl_lines="8" %}
+
+
+
+
-
-
-
- Find free slots
- Create a meeting
- Summarize today
-
-
-
+
+{% endhighlight %}
+{% highlight C# tabtitle="ViewModel.cs" %}
+
+public class ViewModel
+{
+ private List suggestedPrompts;
+
+ public List SuggestedPrompts
+ {
+ get { return suggestedPrompts; }
+ set { suggestedPrompts = value; }
+ }
+
+ public ViewModel()
+ {
+ this.suggestedPrompts = new List()
+ {
+ "Summarize today's appointments",
+ "Find today's free timeslots",
+ "Conflict detection"
+ };
+ }
+}
+
{% endhighlight %}
{% highlight C# hl_lines="4 5 6 7 8 9" %}
@@ -229,9 +249,9 @@ The assist view suggested prompts can be customized by using the `SuggestedPromp
smartScheduler.AssistViewSettings.ShowAssistViewBanner = true;
smartScheduler.AssistViewSettings.SuggestedPrompts = new List
{
- "Schedule meeting",
- "Set reminder",
- "Book appointment"
+ "Summarize today's appointments",
+ "Find today's free timeslots",
+ "Conflict detection"
};
this.Content = smartScheduler;
diff --git a/maui-toc.html b/maui-toc.html
index ef56cba1c..1b1fb2e96 100644
--- a/maui-toc.html
+++ b/maui-toc.html
@@ -1210,18 +1210,15 @@
AI powered Smart Appointment Booking
- Smart Components
+
+ SfSmartScheduler