The options used to create a output area model.

interface IOptions {
    contentFactory?: IOutputAreaModel.IContentFactory;
    maxLength: number;
    trusted?: boolean;
    values?: IOutput[];
}

Hierarchy (view full)

Properties

The output content factory used by the model.

If not given, a default factory will be used.

maxLength: number

The maximum number of messages stored.

trusted?: boolean

Whether the output is trusted. The default is false.

values?: IOutput[]

The initial values for the model.