UnitsToPixels PowerScript function
Description
Converts PowerBuilder units to pixels and reports the measurement.
Because pixels are not usually square, you also specify whether
to convert in the horizontal or vertical direction.
Syntax
|
1 |
<span>UnitsToPixels</span> ( <span>units</span>, <span>type</span> ) |
|
Argument |
Description |
|---|---|
|
units |
An integer whose value is the number |
|
type |
A value of the ConvertType enumerated
|
Return Values
Integer. Returns the converted value
if it succeeds and -1 if an error occurs. If any argument’s
value is null, UnitsToPixels returns null.
Examples
These statements convert 350 vertical PowerBuilder
units to vertical pixels and set value equal to the converted value:
|
1 |
integer Value |
|
1 |
Value = <span>UnitsToPixels</span>(350, YUnitsToPixels!) |