@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
51 lines (50 loc) • 1.75 kB
TypeScript
import { Alignment, Parameter } from "./../index";
export interface PieceInfoBackgroundContentInterface {
absoluteScaling?: boolean;
alignment?: Alignment;
color?: string;
horizOffset?: number;
opacity?: number;
rotation?: number;
scale?: number;
unit?: string;
vertOffset?: number;
}
export declare class PieceInfoBackgroundContent implements PieceInfoBackgroundContentInterface, Parameter {
absoluteScaling?: boolean;
alignment?: Alignment;
color?: string;
horizOffset?: number;
opacity?: number;
rotation?: number;
scale?: number;
unit?: string;
vertOffset?: number;
constructor(data: any);
static getAbsoluteScalingDefault(): boolean;
static getAbsoluteScalingDescription(): string;
static getAlignmentDefault(): Alignment;
static getAlignmentDescription(): string;
static getColorDefault(): string;
static getColorDescription(): string;
static getHorizOffsetDefault(): number;
static getHorizOffsetDescription(): string;
static getOpacityDefault(): number;
static getOpacityDescription(): string;
static getOpacityMin(): number;
static getOpacityMax(): number;
static getRotationDefault(): number;
static getRotationDescription(): string;
static getRotationMin(): number;
static getRotationMax(): number;
static getScaleDefault(): number;
static getScaleDescription(): string;
static getScaleMin(): number;
static getUnitDefault(): string;
static getUnitDescription(): string;
static getVertOffsetDefault(): number;
static getVertOffsetDescription(): string;
static fromJson(data: any): PieceInfoBackgroundContent;
toJson(): any;
clone(): PieceInfoBackgroundContent;
}