Skip to content

Commit 47b38ca

Browse files
Merge pull request #3295 from Syncfusion-Content/hotfix/hotfix-v29.2.4
DOCINFRA-2341_merged_using_automation
2 parents c79750b + e874bbd commit 47b38ca

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

MAUI/ImageEditor/toolbar-customization.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ Create [`SubToolbars`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Image
449449
<imageEditor:SfImageEditor Source="image.png"
450450
AutoGenerateToolbarItems="False">
451451
<imageEditor:SfImageEditor.Toolbars>
452-
<imageEditor:ImageEditorToolbar Orientaion="Vertical"
452+
<imageEditor:ImageEditorToolbar Orientation="Vertical"
453453
Position="End">
454454
<imageEditor:ImageEditorToolbar.ToolbarItems>
455455
<imageEditor:ImageEditorToolbarItem Name="Text">
@@ -478,7 +478,7 @@ SfImageEditor imageEditor = new SfImageEditor();
478478
imageEditor.Source = ImageSource.FromFile("image.png");
479479
imageEditor.AutoGenerateToolbarItems = false;
480480
ImageEditorToolbar editorToolbar = new ();
481-
editorToolbar.Orientaion = ToolbarOrientation.Vertical;
481+
editorToolbar.Orientation = ToolbarOrientation.Vertical;
482482
editorToolbar.Position = ToolbarPosition.End;
483483
editorToolbar.ToolbarItems = new List<IImageEditorToolbarItem>()
484484
{
@@ -528,7 +528,7 @@ N> Customize an icon by specifying its [`Name`](https://help.syncfusion.com/cr/m
528528

529529
## Toolbar Orientation
530530

531-
The toolbar orientation can be changed to achieve the desired design by using the [`Orientation`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.ImageEditor.ImageEditorToolbar.html#Syncfusion_Maui_ImageEditor_ImageEditorToolbar_Orientaion) property in the [`ImageEditorToolbar`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.ImageEditor.ImageEditorToolbar.html) class. The default value is [`ToolbarOrientation.Horizontal`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.ImageEditor.ToolbarOrientation.html#Syncfusion_Maui_ImageEditor_ToolbarOrientation_Horizontal).
531+
The toolbar orientation can be changed to achieve the desired design by using the [`Orientation`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.ImageEditor.ImageEditorToolbar.html#Syncfusion_Maui_ImageEditor_ImageEditorToolbar_Orientation) property in the [`ImageEditorToolbar`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.ImageEditor.ImageEditorToolbar.html) class. The default value is [`ToolbarOrientation.Horizontal`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.ImageEditor.ToolbarOrientation.html#Syncfusion_Maui_ImageEditor_ToolbarOrientation_Horizontal).
532532

533533
For example, set the toolbar to a vertical orientation:
534534

@@ -539,7 +539,7 @@ For example, set the toolbar to a vertical orientation:
539539
SfImageEditor imageEditor = new SfImageEditor();
540540
imageEditor.Source = ImageSource.FromFile("image.png");
541541
ImageEditorToolbar footerToolbar = imageEditor.Toolbars[1];
542-
footerToolbar.Orientaion = ToolbarOrientation.Vertical;
542+
footerToolbar.Orientation = ToolbarOrientation.Vertical;
543543

544544
{% endhighlight %}
545545

0 commit comments

Comments
 (0)