Add scale method to image
This commit is contained in:
@ -10,4 +10,8 @@ export class Image {
|
|||||||
public get Run(): PictureRun {
|
public get Run(): PictureRun {
|
||||||
return this.paragraph.Run;
|
return this.paragraph.Run;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public scale(factorX: number, factorY?: number): void {
|
||||||
|
this.paragraph.Run.scale(factorX, factorY);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user