diff --git a/Document-Processing/Word/Word-Processor/angular/images/track-changes-customData.png b/Document-Processing/Word/Word-Processor/angular/images/track-changes-customData.png
new file mode 100644
index 000000000..cf1fdff50
Binary files /dev/null and b/Document-Processing/Word/Word-Processor/angular/images/track-changes-customData.png differ
diff --git a/Document-Processing/Word/Word-Processor/angular/track-changes.md b/Document-Processing/Word/Word-Processor/angular/track-changes.md
index 24d8a50e7..b83e33332 100644
--- a/Document-Processing/Word/Word-Processor/angular/track-changes.md
+++ b/Document-Processing/Word/Word-Processor/angular/track-changes.md
@@ -105,6 +105,52 @@ In DocumentEditor, we have built-in review panel in which we have provided suppo

+## Custom metadata along with author
+
+The Document Editor provides options to customize revisions using [`revisionsettings`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/documenteditorsettingsmodel#revisionsettings). The [`customData`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/revisionsettings#customdata) property allows you to attach additional metadata to tracked revisions in the Word Processor. This metadata can represent roles, tags, or any custom identifier for the revision. To display this metadata along with the author name in the Track Changes pane, you must enable the [`showCustomDataWithAuthor`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/revisionsettings#showcustomdatawithauthor) property.
+
+The following example code illustrates how to enable and update custom metadata for track changes revisions.
+
+```ts
+import { Component, OnInit, ViewChild } from '@angular/core';
+import {
+ RibbonService,
+ DocumentEditorContainerComponent,
+} from '@syncfusion/ej2-angular-documenteditor';
+import { DocumentEditorContainerModule } from '@syncfusion/ej2-angular-documenteditor';
+@Component({
+ selector: 'app-container',
+ standalone: true,
+ imports: [DocumentEditorContainerModule],
+ providers: [RibbonService],
+ template: `
+
+ `,
+})
+export class AppComponent implements OnInit {
+ @ViewChild('documenteditor_default')
+ public container?: DocumentEditorContainerComponent;
+ public Settings = {
+ revisionSettings: {
+ customData: 'Developer',
+ showCustomDataWithAuthor: true,
+ }};
+ ngOnInit(): void {}
+}
+```
+The Track Changes pane will display the author name along with the custom metadata, as shown in the screenshot below.
+
+
+
+>Note:
+* When you export the document as SFDT, the customData value is stored in the revision collection. When you reopen the SFDT, the custom data is automatically restored and displayed in the Track Changes pane.
+* Other than SFDT export (e.g. DOCX and other), the customData is not preserved, as it is specific to the Document Editor component.
+
## Protect the document in track changes only mode
Document Editor provides support for protecting the document with `RevisionsOnly` protection. In this protection, all the users are allowed to view the document and do their corrections, but they cannot accept or reject any tracked changes in the document. Later, the author can view their corrections and accept or reject the changes.
diff --git a/Document-Processing/Word/Word-Processor/asp-net-core/images/track-changes-customData.png b/Document-Processing/Word/Word-Processor/asp-net-core/images/track-changes-customData.png
new file mode 100644
index 000000000..cf1fdff50
Binary files /dev/null and b/Document-Processing/Word/Word-Processor/asp-net-core/images/track-changes-customData.png differ
diff --git a/Document-Processing/Word/Word-Processor/asp-net-core/track-changes.md b/Document-Processing/Word/Word-Processor/asp-net-core/track-changes.md
index 53d8823e9..8e2a8399f 100644
--- a/Document-Processing/Word/Word-Processor/asp-net-core/track-changes.md
+++ b/Document-Processing/Word/Word-Processor/asp-net-core/track-changes.md
@@ -129,6 +129,29 @@ In DocumentEditor, we have built-in review panel in which we have provided suppo

+## Custom metadata along with author
+
+The Document Editor provides options to customize revisions using `Revisionsettings`. The `CustomData` property allows you to attach additional metadata to tracked revisions in the Word Processor. This metadata can represent roles, tags, or any custom identifier for the revision. To display this metadata along with the author name in the Track Changes pane, you must enable the `showCustomDataWithAuthor` property.
+
+The following example code illustrates how to enable and update custom metadata for track changes revisions.
+
+{% tabs %}
+{% highlight cshtml tabtitle="CSHTML" %}
+{% include code-snippet/document-editor/asp-net-core/document-editor-container/track-changes-revisionSettings/tagHelper %}
+{% endhighlight %}
+{% highlight c# tabtitle="Track-changes-only.cs" %}
+{% include code-snippet/document-editor/asp-net-core/document-editor-container/track-changes-revisionSettings/document-editor.cs %}
+{% endhighlight %}
+{% endtabs %}
+
+The Track Changes pane will display the author name along with the custom metadata, as shown in the screenshot below.
+
+
+
+>Note:
+* When you export the document as SFDT, the customData value is stored in the revision collection. When you reopen the SFDT, the custom data is automatically restored and displayed in the Track Changes pane.
+* Other than SFDT export (e.g. DOCX and other), the customData is not preserved, as it is specific to the Document Editor component.
+
## Protect the document in track changes only mode
Document Editor provides support for protecting the document with `RevisionsOnly` protection. In this protection, all the users are allowed to view the document and do their corrections, but they cannot accept or reject any tracked changes in the document. Later, the author can view their corrections and accept or reject the changes.
diff --git a/Document-Processing/Word/Word-Processor/asp-net-mvc/images/track-changes-customData.png b/Document-Processing/Word/Word-Processor/asp-net-mvc/images/track-changes-customData.png
new file mode 100644
index 000000000..cf1fdff50
Binary files /dev/null and b/Document-Processing/Word/Word-Processor/asp-net-mvc/images/track-changes-customData.png differ
diff --git a/Document-Processing/Word/Word-Processor/asp-net-mvc/track-changes.md b/Document-Processing/Word/Word-Processor/asp-net-mvc/track-changes.md
index 4d92f624c..301158906 100644
--- a/Document-Processing/Word/Word-Processor/asp-net-mvc/track-changes.md
+++ b/Document-Processing/Word/Word-Processor/asp-net-mvc/track-changes.md
@@ -124,6 +124,29 @@ In DocumentEditor, we have built-in review panel in which we have provided suppo

+## Custom metadata along with author
+
+The Document Editor provides options to customize revisions using `Revisionsettings`. The `CustomData` property allows you to attach additional metadata to tracked revisions in the Word Processor. This metadata can represent roles, tags, or any custom identifier for the revision. To display this metadata along with the author name in the Track Changes pane, you must enable the `showCustomDataWithAuthor` property.
+
+The following example code illustrates how to enable and update custom metadata for track changes revisions.
+
+{% tabs %}
+{% highlight razor tabtitle="CSHTML" %}
+{% include code-snippet/document-editor/asp-net-mvc/document-editor-container/track-changes-revisionSettings/razor %}
+{% endhighlight %}
+{% highlight c# tabtitle="Track-changes.cs" %}
+{% include code-snippet/document-editor/asp-net-mvc/document-editor-container/track-changes-revisionSettings/document-editor.cs %}
+{% endhighlight %}
+{% endtabs %}
+
+The Track Changes pane will display the author name along with the custom metadata, as shown in the screenshot below.
+
+
+
+>Note:
+* When you export the document as SFDT, the customData value is stored in the revision collection. When you reopen the SFDT, the custom data is automatically restored and displayed in the Track Changes pane.
+* Other than SFDT export (e.g. DOCX and other), the customData is not preserved, as it is specific to the Document Editor component.
+
## Protect the document in track changes only mode
Document Editor provides support for protecting the document with `RevisionsOnly` protection. In this protection, all the users are allowed to view the document and do their corrections, but they cannot accept or reject any tracked changes in the document. Later, the author can view their corrections and accept or reject the changes.
diff --git a/Document-Processing/Word/Word-Processor/blazor/images/track-changes-customData.png b/Document-Processing/Word/Word-Processor/blazor/images/track-changes-customData.png
new file mode 100644
index 000000000..cf1fdff50
Binary files /dev/null and b/Document-Processing/Word/Word-Processor/blazor/images/track-changes-customData.png differ
diff --git a/Document-Processing/Word/Word-Processor/blazor/track-changes.md b/Document-Processing/Word/Word-Processor/blazor/track-changes.md
index 01c9b5a76..07cba5ac8 100644
--- a/Document-Processing/Word/Word-Processor/blazor/track-changes.md
+++ b/Document-Processing/Word/Word-Processor/blazor/track-changes.md
@@ -85,6 +85,32 @@ In DocumentEditor, we have built-in review panel in which we have provided suppo

+## Custom metadata along with author
+
+The Document Editor provides options to customize revisions using [`Revisionsettings`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.DocumentEditor.DocumentEditorSettingsModel.html#Syncfusion_Blazor_DocumentEditor_DocumentEditorSettingsModel_RevisionSettings). The `CustomData` property allows you to attach additional metadata to tracked revisions in the Word Processor. This metadata can represent roles, tags, or any custom identifier for the revision. To display this metadata along with the author name in the Track Changes pane, you must enable the `showCustomDataWithAuthor` property.
+
+The following example code illustrates how to enable and update custom metadata for track changes revisions.
+
+```ts
+@using Syncfusion.Blazor.DocumentEditor
+
+
+
+@code {
+ SfDocumentEditorContainer container;
+ DocumentEditorSettingsModel settings = new DocumentEditorSettingsModel()
+ { RevisionSettings= { CustomData = "Developer", ShowCustomDataWithAuthor = true}};
+}
+```
+
+The Track Changes pane will display the author name along with the custom metadata, as shown in the screenshot below.
+
+
+
+>Note:
+* When you export the document as SFDT, the customData value is stored in the revision collection. When you reopen the SFDT, the custom data is automatically restored and displayed in the Track Changes pane.
+* Other than SFDT export (e.g. DOCX and other), the customData is not preserved, as it is specific to the Document Editor component.
+
## Protect the document in track changes only mode
Document Editor provides support for protecting the document with `RevisionsOnly` protection. In this protection, all the users are allowed to view the document and do their corrections, but they cannot accept or reject any tracked changes in the document. Later, the author can view their corrections and accept or reject the changes.
diff --git a/Document-Processing/Word/Word-Processor/javascript-es5/images/track-changes-customData.png b/Document-Processing/Word/Word-Processor/javascript-es5/images/track-changes-customData.png
new file mode 100644
index 000000000..cf1fdff50
Binary files /dev/null and b/Document-Processing/Word/Word-Processor/javascript-es5/images/track-changes-customData.png differ
diff --git a/Document-Processing/Word/Word-Processor/javascript-es5/track-changes.md b/Document-Processing/Word/Word-Processor/javascript-es5/track-changes.md
index 247ad0b38..1607e553e 100644
--- a/Document-Processing/Word/Word-Processor/javascript-es5/track-changes.md
+++ b/Document-Processing/Word/Word-Processor/javascript-es5/track-changes.md
@@ -123,6 +123,35 @@ container.documentEditor.selection.navigateNextRevision();
*/
container.documentEditor.selection.navigatePreviousRevision();
```
+## Custom metadata along with author
+
+The Document Editor provides options to customize revisions using [`revisionsettings`](https://ej2.syncfusion.com/javascript/documentation/api/document-editor/documenteditorsettingsmodel#revisionsettings). The [`customData`](https://ej2.syncfusion.com/javascript/documentation/api/document-editor/revisionsettings#customdata) property allows you to attach additional metadata to tracked revisions in the Word Processor. This metadata can represent roles, tags, or any custom identifier for the revision. To display this metadata along with the author name in the Track Changes pane, you must enable the [`showCustomDataWithAuthor`](https://ej2.syncfusion.com/javascript/documentation/api/document-editor/revisionsettings#showcustomdatawithauthor) property.
+
+The following example code illustrates how to enable and update custom metadata for track changes revisions.
+
+```js
+var container = new ej.documenteditor.DocumentEditor({
+ serviceUrl: hostUrl,
+ height: '590px',
+ enableTrackChanges: true,
+ documentEditorSettings: {
+ revisionSettings: {
+ customData: 'Developer',
+ showCustomDataWithAuthor: true
+ }}
+});
+DocumentEditorContainer.Inject(Toolbar);
+container.appendTo('#container');
+
+```
+
+The Track Changes pane will display the author name along with the custom metadata, as shown in the screenshot below.
+
+
+
+>Note:
+* When you export the document as SFDT, the customData value is stored in the revision collection. When you reopen the SFDT, the custom data is automatically restored and displayed in the Track Changes pane.
+* Other than SFDT export (e.g. DOCX and other), the customData is not preserved, as it is specific to the Document Editor component.
## Filtering changes based on user
diff --git a/Document-Processing/Word/Word-Processor/javascript-es6/images/track-changes-customData.png b/Document-Processing/Word/Word-Processor/javascript-es6/images/track-changes-customData.png
new file mode 100644
index 000000000..cf1fdff50
Binary files /dev/null and b/Document-Processing/Word/Word-Processor/javascript-es6/images/track-changes-customData.png differ
diff --git a/Document-Processing/Word/Word-Processor/javascript-es6/track-changes.md b/Document-Processing/Word/Word-Processor/javascript-es6/track-changes.md
index 4a79d669f..c8d07388d 100644
--- a/Document-Processing/Word/Word-Processor/javascript-es6/track-changes.md
+++ b/Document-Processing/Word/Word-Processor/javascript-es6/track-changes.md
@@ -168,6 +168,33 @@ In DocumentEditor, we have built-in review panel in which we have provided suppo

+## Custom metadata along with author
+
+The Document Editor provides options to customize revisions using [`revisionsettings`](https://ej2.syncfusion.com/documentation/api/document-editor/documenteditorsettingsmodel#revisionsettings). The [`customData`](https://ej2.syncfusion.com/documentation/api/document-editor/revisionsettings#customdata) property allows you to attach additional metadata to tracked revisions in the Word Processor. This metadata can represent roles, tags, or any custom identifier for the revision. To display this metadata along with the author name in the Track Changes pane, you must enable the [`showCustomDataWithAuthor`](https://ej2.syncfusion.com/documentation/api/document-editor/revisionsettings#showcustomdatawithauthor) property.
+
+The following example code illustrates how to enable and update custom metadata for track changes revisions.
+
+```ts
+import { DocumentEditorContainer, Ribbon } from '@syncfusion/ej2-documenteditor';
+let container: DocumentEditorContainer = new DocumentEditorContainer({
+ height: '590px',
+ serviceUrl= hostUrl,
+ enableTrackChanges=true,
+ documentEditorSettings: {
+ revisionSettings: { customData : "Developer", showCustomDataWithAuthor : true }}
+});
+DocumentEditorContainer.Inject(Ribbon);
+container.appendTo('#container');
+```
+
+The Track Changes pane will display the author name along with the custom metadata, as shown in the screenshot below.
+
+
+
+>Note:
+* When you export the document as SFDT, the customData value is stored in the revision collection. When you reopen the SFDT, the custom data is automatically restored and displayed in the Track Changes pane.
+* Other than SFDT export (e.g. DOCX and other), the customData is not preserved, as it is specific to the Document Editor component.
+
## Protect the document in track changes only mode
Document Editor provides support for protecting the document with `RevisionsOnly` protection. In this protection, all the users are allowed to view the document and do their corrections, but they cannot accept or reject any tracked changes in the document. Later, the author can view their corrections and accept or reject the changes.
diff --git a/Document-Processing/Word/Word-Processor/react/images/track-changes-customData.png b/Document-Processing/Word/Word-Processor/react/images/track-changes-customData.png
new file mode 100644
index 000000000..cf1fdff50
Binary files /dev/null and b/Document-Processing/Word/Word-Processor/react/images/track-changes-customData.png differ
diff --git a/Document-Processing/Word/Word-Processor/vue/images/track-changes-customData.png b/Document-Processing/Word/Word-Processor/vue/images/track-changes-customData.png
new file mode 100644
index 000000000..cf1fdff50
Binary files /dev/null and b/Document-Processing/Word/Word-Processor/vue/images/track-changes-customData.png differ
diff --git a/Document-Processing/Word/Word-Processor/vue/track-changes.md b/Document-Processing/Word/Word-Processor/vue/track-changes.md
index 6b6f96514..42169311e 100644
--- a/Document-Processing/Word/Word-Processor/vue/track-changes.md
+++ b/Document-Processing/Word/Word-Processor/vue/track-changes.md
@@ -165,6 +165,47 @@ In DocumentEditor, we have built-in review panel in which we have provided suppo

+## Custom metadata along with author
+
+The Document Editor provides options to customize revisions using [`revisionsettings`](https://ej2.syncfusion.com/vue/documentation/api/document-editor/documenteditorsettingsmodel#revisionsettings). The [`customData`](https://ej2.syncfusion.com/vue/documentation/api/document-editor/revisionsettings#customdata) property allows you to attach additional metadata to tracked revisions in the Word Processor. This metadata can represent roles, tags, or any custom identifier for the revision. To display this metadata along with the author name in the Track Changes pane, you must enable the [`showCustomDataWithAuthor`](https://ej2.syncfusion.com/vue/documentation/api/document-editor/revisionsettings#showcustomdatawithauthor) property.
+
+The following example code illustrates how to enable and update custom metadata for track changes revisions.
+
+```ts
+
+
+
+
+
+
+
+
+```
+The Track Changes pane will display the author name along with the custom metadata, as shown in the screenshot below.
+
+
+
+>Note:
+* When you export the document as SFDT, the customData value is stored in the revision collection. When you reopen the SFDT, the custom data is automatically restored and displayed in the Track Changes pane.
+* Other than SFDT export (e.g. DOCX and other), the customData is not preserved, as it is specific to the Document Editor component.
+
+
## Protect the document in track changes only mode
Document Editor provides support for protecting the document with `RevisionsOnly` protection. In this protection, all the users are allowed to view the document and do their corrections, but they cannot accept or reject any tracked changes in the document. Later, the author can view their corrections and accept or reject the changes.
diff --git a/Document-Processing/code-snippet/document-editor/asp-net-core/document-editor-container/track-changes-revisionSettings/document-editor.cs b/Document-Processing/code-snippet/document-editor/asp-net-core/document-editor-container/track-changes-revisionSettings/document-editor.cs
new file mode 100644
index 000000000..cca48eedf
--- /dev/null
+++ b/Document-Processing/code-snippet/document-editor/asp-net-core/document-editor-container/track-changes-revisionSettings/document-editor.cs
@@ -0,0 +1,5 @@
+ public ActionResult Default()
+ {
+ return View();
+ }
+
diff --git a/Document-Processing/code-snippet/document-editor/asp-net-core/document-editor-container/track-changes-revisionSettings/razor b/Document-Processing/code-snippet/document-editor/asp-net-core/document-editor-container/track-changes-revisionSettings/razor
new file mode 100644
index 000000000..557ee8fbb
--- /dev/null
+++ b/Document-Processing/code-snippet/document-editor/asp-net-core/document-editor-container/track-changes-revisionSettings/razor
@@ -0,0 +1,4 @@
+@Html.EJS().DocumentEditorContainer("container").EnableTrackChanges(true).EnableToolbar(true).DocumentEditorSettings("settings").Render()
+
diff --git a/Document-Processing/code-snippet/document-editor/asp-net-core/document-editor-container/track-changes-revisionSettings/tagHelper b/Document-Processing/code-snippet/document-editor/asp-net-core/document-editor-container/track-changes-revisionSettings/tagHelper
new file mode 100644
index 000000000..222f30f8c
--- /dev/null
+++ b/Document-Processing/code-snippet/document-editor/asp-net-core/document-editor-container/track-changes-revisionSettings/tagHelper
@@ -0,0 +1,4 @@
+
+
diff --git a/Document-Processing/code-snippet/document-editor/asp-net-mvc/document-editor-container/track-changes-revisionSettings/document-editor.cs b/Document-Processing/code-snippet/document-editor/asp-net-mvc/document-editor-container/track-changes-revisionSettings/document-editor.cs
new file mode 100644
index 000000000..cca48eedf
--- /dev/null
+++ b/Document-Processing/code-snippet/document-editor/asp-net-mvc/document-editor-container/track-changes-revisionSettings/document-editor.cs
@@ -0,0 +1,5 @@
+ public ActionResult Default()
+ {
+ return View();
+ }
+
diff --git a/Document-Processing/code-snippet/document-editor/asp-net-mvc/document-editor-container/track-changes-revisionSettings/razor b/Document-Processing/code-snippet/document-editor/asp-net-mvc/document-editor-container/track-changes-revisionSettings/razor
new file mode 100644
index 000000000..a40941262
--- /dev/null
+++ b/Document-Processing/code-snippet/document-editor/asp-net-mvc/document-editor-container/track-changes-revisionSettings/razor
@@ -0,0 +1,4 @@
+@Html.EJS().DocumentEditorContainer("container").EnableTrackChanges(true).DocumentEditorSettings("settings").Render()
+
diff --git a/Document-Processing/code-snippet/document-editor/asp-net-mvc/document-editor-container/track-changes-revisionSettings/tagHelper b/Document-Processing/code-snippet/document-editor/asp-net-mvc/document-editor-container/track-changes-revisionSettings/tagHelper
new file mode 100644
index 000000000..222f30f8c
--- /dev/null
+++ b/Document-Processing/code-snippet/document-editor/asp-net-mvc/document-editor-container/track-changes-revisionSettings/tagHelper
@@ -0,0 +1,4 @@
+
+