EvRect Interface
The EvRect TS interface defines a blueprint of a JS object that describes a rectangular area in the 2D space of an Envision document.

Properties
An EvRect object has the following properties:
optional left: number;A number, the distance on the X axis from the zero point of an Envision document page to the left edge of a given rectangular area in the 2D length unit of measure (UoM) global for the entire evCreate API. If this property has no value given, it is set to
0.optional top: number;A number, the distance on the Y axis from the zero point of an Envision document page to the top edge of a given rectangular area in a 2D length UoM global for the entire evCreate API. If this property has no value given, it is set to
0.optional right: number;A number, the distance on the X axis from the zero point of an Envision document page to the right edge of a given rectangular area in a 2D length UoM global for the entire evCreate API. If this property has no value given, it is set to
0.optional bottom: number;A number, the distance on the Y axis from the zero point of an Envision document page to the bottom edge of a given rectangular area in a 2D length UoM global for the entire evCreate API. If this property has no value given, it is set to
0.
Examples
Discussion
To learn the UoM global for the evCreate API, use the GetCurrentOptions(): Promise<EvCreateApiOptions> function. To reset the global UoM, use the ConfigureOptions(opt: EvCreateApiOptions): Promise<EvCreateApiOptions> function.