PixelsToUnits PowerScript function
Description
Converts pixels to PowerBuilder units. Because pixels are
not usually square, you also specify whether you are converting
the pixels’ horizontal or vertical measurement.
Syntax
1 |
<span>PixelsToUnits</span> ( <span>pixels</span>, <span>type</span> ) |
Argument |
Description |
---|---|
pixels |
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, PixelsToUnits returns null.
Examples
These statements convert 35 horizontal pixels to
PowerBuilder units and set the variable Value equal
to the converted value:
1 |
integer Value |
1 |
Value = <span>PixelsToUnits</span>(35, XPixelsToUnits!) |