stimulsoft-forms
Version:
Stimulsoft PDF Forms
27 lines (26 loc) • 1.21 kB
TypeScript
import { OnDestroy, OnInit } from "@angular/core";
import { StiModelService } from "../../services/model.service";
import { StiMouseService } from "../../services/mouse.service";
import { StiHelperService } from "../../services/sti-helper.service";
import { StiLocalizationService } from "../../services/sti-localization.service";
import { Subscription } from "rxjs";
import * as i0 from "@angular/core";
export declare class PropertiesComponent implements OnInit, OnDestroy {
model: StiModelService;
mouseService: StiMouseService;
helper: StiHelperService;
loc: StiLocalizationService;
startWidth: any;
startX: any;
isDrag: boolean;
mouseUpSubscription: Subscription;
mouseMoveSubscription: Subscription;
constructor(model: StiModelService, mouseService: StiMouseService, helper: StiHelperService, loc: StiLocalizationService);
ngOnDestroy(): void;
ngOnInit(): void;
onMouseDown(event: any): void;
drag(event: any): void;
endDrag(event: any): void;
static ɵfac: i0.ɵɵFactoryDeclaration<PropertiesComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<PropertiesComponent, "app-properties", never, {}, {}, never, never, false, never>;
}