PropertyCollection class
プロパティとその値のコレクションを表します。
プロパティ
keys | プロパティ コレクションのキーを取得します。 |
メソッド
clone() | コレクションを複製します。 |
get |
String 型のプロパティ値を返します。 現時点では、String、int、bool のみが許可されています。 名前が使用できない場合は、指定された defaultValue が返されます。 |
merge |
この一連のプロパティを別のプロパティにマージします。上書きは行われません。 |
set |
name で指定されたパラメーターの String 値を設定します。 |
プロパティの詳細
keys
プロパティ コレクションのキーを取得します。
string[] keys
プロパティ値
string[]
コレクション内のキー。
メソッドの詳細
clone()
getProperty(string | PropertyId, string | number | boolean)
String 型のプロパティ値を返します。 現時点では、String、int、bool のみが許可されています。 名前が使用できない場合は、指定された defaultValue が返されます。
function getProperty(key: string | PropertyId, def?: string | number | boolean): string
パラメーター
- key
-
string | PropertyId
パラメーター名。
- def
-
string | number | boolean
パラメーターがコレクションで使用できない場合に返される既定値。
戻り値
string
パラメーターの値。
mergeTo(PropertyCollection)
この一連のプロパティを別のプロパティにマージします。上書きは行われません。
function mergeTo(destinationCollection: PropertyCollection)
パラメーター
- destinationCollection
- PropertyCollection
マージ先のコレクション。
setProperty(string | PropertyId, string)
name で指定されたパラメーターの String 値を設定します。
function setProperty(key: string | PropertyId, value: string)
パラメーター
- key
-
string | PropertyId
パラメーター名。
- value
-
string
パラメーターの値。