@eclipse-scout/core
Version:
Eclipse Scout runtime
24 lines • 651 B
TypeScript
export declare class Insets {
top: number;
right: number;
bottom: number;
left: number;
/**
* If no parameters are passed, all members are initialized with 0.
*/
constructor(topOrInsets?: number | Insets, right?: number, bottom?: number, left?: number);
toString(): string;
equals(o: Insets): boolean;
clone(): Insets;
horizontal(): number;
vertical(): number;
/**
* Creates a copy and calls Math.floor() on each property.
*/
floor(): Insets;
/**
* Creates a copy and calls Math.ceil() on each property.
*/
ceil(): Insets;
}
//# sourceMappingURL=Insets.d.ts.map