GxSize.CreateFromSize

Syntax

CreateFromSize(Size: IGxSize);

Parameters

Size. The size, based on which a new size is created.

Description

The CreateFromPoint constructor creates a new size that is the copy of the size passed by the Size parameter.

Example

Function GetCopySize(SourceSize: IGxSize): IGxSize;
Var
    DestinationSize: IGxSize;
Begin
    DestinationSize := New GxSize.CreateFromSize(SourceSize);
    Return DestinationSize;
End Function GetCopySize;

This function returns the copy of the size passed as an input parameter.

See also:

GxSize