Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

NusaPlaceholder Interface

Declares settings of a placeholder in the Nuance SpeechKit.

#Declaration

TypeScript
export interface NusaPlaceholder

#Remarks

A Nuance SpeechKit command can include placeholders in the phrase. Use the NusaPlaceholder interface to declare custom placeholders.

#Properties

#description Property

Specifies the placeholder description.

#Declaration

TypeScript
description: string

#Property Value

Type Description
string

The description text.

#id Property

Specifies the unique identifier of the placeholder.

#Declaration

TypeScript
id: NusaRichEditPlaceholderId

#Property Value

Type Description

The placeholder identifier.

#Remarks

A placeholder identifier must not contain spaces or numbers.

#values Property

Contains the placeholder’s available values.

#Declaration

TypeScript
values: ({
    spokenForm: string;
    value: string;
} | string[])[]

#Property Value

Type Description
string[] | {spokenForm: string, value: string}[]

An array of objects that contain spoken forms and corresponding values for the placeholder or an array of stings if spoken forms match the values.