Class Size

A Size describes a width and a height in two-dimensional coordinates.The width and height must both be non-negative.

Use the static functions Size.parse and Size.stringify to convert to and froma standard string representation that is independent of the current locale.

When an instance of this class is the value of a property of a GraphObject class or Diagramor CommandHandler or a Tool class, you should treat the objectas if it were frozen or read-only -- you cannot modify its properties.This allows the property to return a value without allocating a new instance.If you need to do your own calculations with the value, call copy to makea new instance with the same values that you can modify.

Many methods modify the object's properties and then return a reference to "this" object.The only instance method to allocate a new object is the copy method.The static Size.parse method also allocates a new object.

The "Debug" implementation of this class is significantly slower than the "Release" implementation,mostly due to additional error checking.

You cannot inherit from this class.

Constructor Summary Details

Name Description
Size(w, h)

The default constructor produces the Size(0,0).More... This constructor may take either zero arguments or two arguments.

Parameters:
{number=} w
The initial width (must be non-negative).
{number=} h
The initial height (must be non-negative).

Properties Summary Details

Name, Value Type Description
height
{number}

Gets or sets the height value of the Size.More... The value must not be negative.

width
{number}

Gets or sets the width value of the Size.More... The value must not be negative.

Method Summary Details

Name, Return Type Description
copy()
{Size}

Create a copy of this Size, with the same values.

Returns:
{Size}
equals(s)
{boolean}

Indicates whether the given Size is equal to the current Size.More...

See also:
Parameters:
{Size} s
The Size to compare to the current Size.
Returns:
{boolean} True if the Sizes have the same width and height,false otherwise.
equalTo(w, h)
{boolean}

Indicates whether the given size is equal to this Size.More...

See also:
Parameters:
{number} w
the width.
{number} h
the height.
Returns:
{boolean} True if the Sizes have the same width and height,false otherwise.
isReal()
{boolean}

True if this Size has Width and Height values that are real numbers and not infinity.

Returns:
{boolean}
<static>
Size.parse(str)
{Size}

This static function can be used to read in a Size from a string that was produced by Size.stringify.More...

go.Size.parse("1 2") produces the Size new go.Size(1, 2).

Parameters:
{string} str
Returns:
{Size}
set(s)
{Size}

Modify this Size so that its Width and Height values are the same as the given Size.More...

Parameters:
{Size} s
the given Size.
Returns:
{Size} this.
setTo(w, h)
{Size}

Modify this Size with new Width and Height values.More...

Parameters:
{number} w
the width.
{number} h
the height.
Returns:
{Size} this.
<static>
Size.stringify(val)
{string}

This static function can be used to write out a Size as a string that can be read by Size.parse.More...

go.Size.stringify(new go.Size(1, 2)) produces the string "1 2".

Parameters:
{Size} val
Returns:
{string}