UserDictionary

A user dictionary.

Methods:

addWord, removeWord

Objects:

Number, Object, String

Property Listing

Property

Type

Access

Description

addedWords

Array of String

read/write

A list of words added to the user dictionary.

index

Number

readonly

The index of the UserDictionary within its containing object.

name

String

readonly

The name of the UserDictionary.

parent

Application

readonly

The parent of the UserDictionary (a Application).

properties

Object

read/write

A property that allows setting of several properties at the same time.

removedWords

Array of String

read/write

A list of words removed from the user dictionary.

Method Listing

undefined addWord (addedWords:Array of String, [removedList:Boolean=Boolean])

Adds the specified words to the specified list in the dictionary.

Parameter

Type

Description

addedWords

Array of String

The words to add.

removedList

Boolean

If true, adds the words to the removed words list. If false or unspecified, adds the words to the added words list. (Optional)

(default: false)

undefined removeWord (removedWords:Array of String, [removedList:Boolean=Boolean])

Removes the specified words from the specified list in the dictionary.

Parameter

Type

Description

removedWords

Array of String

The words to remove.

removedList

Boolean

If true, removes the words from the removed words list. If false or unspecified, removes the words from the added words list. (Optional)

(default: false)