window クラス : PointToScreen(real,real)メソッド
説明
クライアント座標をスクリーン座標に変換します。
構文
instance.PointToScreen(real x, real y)
引数
クラス | 名前 | 説明 |
real | x | X 座標。 |
real | y | Y 座標。 |
返り値
クラス | 説明 |
dictionary | 変換後の座標。 |
サンプルコード
1: | window w = new window(); |
2: | dictionary dic = w.PointToScreen(500, 500); // client (500, 500) -> screen. |
3: | real x = dic.ScreenX; |
4: | real y = dic.ScreenY; |
注意
引数はウインドウのクライアント座標です。
返り値の dictionary は以下の key と value のペアを持ちます。
key | value(クラス) | value(説明) |
ScreenX | real | スクリーン座標での X 座標。 |
ScreenY | real | スクリーン座標での Y 座標。 |
参照リンク
無し。