GetRect

GetRect(string, Rect)

public Rect GetRect(string name, Rect defaultValue) ;

説明

Rect型の値を取得する。

パラメーター

パラメーター名 説明
name 名前。
defaultValue デフォルトの値。パラメータがない場合に返される。

戻り値

パラメータの値。パラメータがない場合はdefaultValueを返す。

GetRect(string)

public Rect GetRect(string name) ;

説明

Rect型の値を取得する。

パラメーター

パラメーター名 説明
name 名前。

戻り値

パラメータの値。パラメータがない場合はRect(0, 0, 0, 0)を返す。

GetRect(int, Rect)

public Rect GetRect(int id, Rect defaultValue) ;

説明

Rect型の値を取得する。

パラメーター

パラメーター名 説明
id ID。
defaultValue デフォルトの値。パラメータがない場合に返される。

戻り値

パラメータの値。パラメータがない場合はdefaultValueを返す。

GetRect(int)

public Rect GetRect(int id) ;

説明

Rect型の値を取得する。

パラメーター

パラメーター名 説明
id ID。

戻り値

パラメータの値。パラメータがない場合はRect(0, 0, 0, 0)を返す。

GetRect(string, out Rect)

Obsolete public bool GetRect(string name, out Rect value) ;

説明

Rect型の値を取得する。

パラメーター

パラメーター名 説明
name 名前。
value 取得する値。

戻り値

指定した名前のパラメータがあった場合にtrue。

GetRect(int, out Rect)

Obsolete public bool GetRect(int id, out Rect value) ;

説明

Rect型の値を取得する。

パラメーター

パラメーター名 説明
id ID。
value 取得する値。

戻り値

指定した名前のパラメータがあった場合にtrue。