Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SEO-181194-React docs Multiple H1 #443

Open
wants to merge 1 commit into
base: hotfix/hotfix-v26.2.4
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions ej2-react/document-editor/restrict-editing.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ domainurl: ##DomainURL##

Document Editor provides support to restrict editing. When the protected document includes range permission, then unique user or user group only authorized to edit separate text area.

# Set current user
## Set current user

You can use the `currentUser` property to authorize the current document user by name, email, or user group name.

Expand All @@ -22,7 +22,7 @@ The following code shows how to set currentUser
documentEditor.currentUser = '[email protected]';
```

# Highlighting the text area
## Highlighting the text area

You can highlight the editable region of the current user using the `userColor` property.

Expand All @@ -34,13 +34,13 @@ documentEditor.userColor = '#fff000';

You can toggle the highlight the editable region value using the "highlightEditableRanges" property.

The folowing code shows how to toggle the highlight editable region value.
The following code shows how to toggle the highlight editable region value.

```typescript
container.documentEditor.documentEditorSettings.highlightEditableRanges = true;
```

# Restrict Editing Pane
## Restrict Editing Pane

Restrict Editing Pane provides the following options to manage the document:
* To apply formatting restrictions to the current document, select the allow formatting check box.
Expand Down