|
@@ -632,10 +632,10 @@ export class EngravingRules {
|
|
|
|
|
|
// TODO maybe this should be moved to OSMDOptions. Also see OpenSheetMusicDisplay.PageFormatStandards
|
|
|
export class PageFormat {
|
|
|
- constructor(Width: number, Height: number, IdString: string = "noIdStringGiven") {
|
|
|
- this.width = Width;
|
|
|
- this.height = Height;
|
|
|
- this.idString = IdString;
|
|
|
+ constructor(width: number, height: number, idString: string = "noIdStringGiven") {
|
|
|
+ this.width = width;
|
|
|
+ this.height = height;
|
|
|
+ this.idString = idString;
|
|
|
}
|
|
|
public width: number;
|
|
|
public height: number;
|