11---
22layout : post
33title : Events in Blazor Block Editor Component | Syncfusion
4- description : Checkout and learn about Events in Syncfusion Blazor Block Editor component and more .
4+ description : Checkout and learn about Events with Syncfusion Blazor Block Editor component in Blazor Server App and Blazor WebAssembly App .
55platform : Blazor
66control : BlockEditor
77documentation : ug
@@ -17,7 +17,7 @@ The `Created` event is triggered when the Block Editor component is successfully
1717
1818``` cshtml
1919
20- @using Syncfusion.Blazor.Block Editor ;
20+ @using Syncfusion.Blazor.BlockEditor ;
2121
2222<div id="container">
2323 <SfBlock Editor ID="blockeditor" Created="@OnCreated">
@@ -39,7 +39,7 @@ The `BlockChanged` event is triggered whenever the editor blocks are changed. Th
3939
4040``` cshtml
4141
42- @using Syncfusion.Blazor.Block Editor ;
42+ @using Syncfusion.Blazor.BlockEditor ;
4343
4444<div id="container">
4545 <SfBlock Editor ID="blockeditor" BlockChanged="@BlockChanged">
@@ -61,7 +61,7 @@ The `SelectionChanged` event is triggered when the user's text selection changes
6161
6262``` cshtml
6363
64- @using Syncfusion.Blazor.Block Editor ;
64+ @using Syncfusion.Blazor.BlockEditor ;
6565
6666<div id="container">
6767 <SfBlock Editor ID="blockeditor" SelectionChanged="@SelectionChanged">
@@ -83,7 +83,7 @@ The `Focus` event is triggered when the editor gains focus. This is useful for u
8383
8484``` cshtml
8585
86- @using Syncfusion.Blazor.Block Editor ;
86+ @using Syncfusion.Blazor.BlockEditor ;
8787
8888<div id="container">
8989 <SfBlock Editor ID="blockeditor" Focus="@Focus">
@@ -105,7 +105,7 @@ The `Blur` event is triggered when the editor loses focus. This is commonly used
105105
106106``` cshtml
107107
108- @using Syncfusion.Blazor.Block Editor ;
108+ @using Syncfusion.Blazor.BlockEditor ;
109109
110110<div id="container">
111111 <SfBlock Editor ID="blockeditor" Blur="@Blur">
@@ -127,7 +127,7 @@ The `PasteCleanupStarting` event is triggered before content is pasted into the
127127
128128``` cshtml
129129
130- @using Syncfusion.Blazor.Block Editor ;
130+ @using Syncfusion.Blazor.BlockEditor ;
131131
132132<div id="container">
133133 <SfBlock Editor ID="blockeditor" PasteCleanupStarting="@PasteCleanupStarting">
@@ -149,7 +149,7 @@ The `PasteCleanupCompleted` event is triggered after content has been successful
149149
150150``` cshtml
151151
152- @using Syncfusion.Blazor.Block Editor ;
152+ @using Syncfusion.Blazor.BlockEditor ;
153153
154154<div id="container">
155155 <SfBlock Editor ID="blockeditor" PasteCleanupCompleted="@PasteCleanupCompleted">
0 commit comments