言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

Rect.height

public var height: float;

Description

Height of the rectangle.

	var rect = Rect (0, 0, 10, 10);
	print(rect.height);
	rect.height = 20;