New to Kendo UI for Angular? Start a free 30-day trial
ApplyToWordOptions
Represents the options for applying a command to the "word" at the cursor position.
Use the before
and after
regular expressions to define what counts as a word boundary (see example).
typescript
const options: ApplyToWordOptions = {
before: /\s/,
after: /\s/
};