Movatterモバイル変換


[0]ホーム

URL:


menu
  1. Dart
  2. dart:math
  3. MutableRectangle<T extends num>
  4. height property
height
description

height property

T getheight

The height of the rectangle.

Implementation

T get height => _height;
setheight(Theight)

Sets the height of the rectangle.

The height must be non-negative.If a negative height is supplied, it is clamped to zero.

Setting the value will change the bottom edge of the rectangle,but will not changetop.

Implementation

set height(T height) {  if (height < 0) height = _clampToZero<T>(height);  _height = height;}
  1. Dart
  2. dart:math
  3. MutableRectangle<T extends num>
  4. height property
MutableRectangle class

[8]ページ先頭

©2009-2025 Movatter.jp