@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
32 lines (31 loc) • 949 B
TypeScript
import { Parameter } from "./../index";
export interface FreeTextFontInterface {
bold?: boolean;
color?: string;
italic?: boolean;
name?: string;
size?: number;
}
export declare class FreeTextFont implements FreeTextFontInterface, Parameter {
bold?: boolean;
color?: string;
italic?: boolean;
name?: string;
size?: number;
constructor(data: any);
static getBoldDefault(): boolean;
static getBoldDescription(): string;
static getColorDefault(): string;
static getColorDescription(): string;
static getItalicDefault(): boolean;
static getItalicDescription(): string;
static getNameDefault(): string;
static getNameDescription(): string;
static getSizeDefault(): number;
static getSizeDescription(): string;
static getSizeMin(): number;
static getSizeMax(): number;
static fromJson(data: any): FreeTextFont;
toJson(): any;
clone(): FreeTextFont;
}