Merge pull request #565 from SoapyD/height_branch

table-row height correction
This commit is contained in:
Dolan
2021-03-04 02:13:32 +00:00
committed by GitHub
4 changed files with 8 additions and 8 deletions

View File

@ -20,8 +20,8 @@ export class TableRowProperties extends IgnoreIfEmptyXmlComponent {
return this;
}
public setHeight(height: number, rule: HeightRule): TableRowProperties {
this.root.push(new TableRowHeight(height, rule));
public setHeight(value: number, rule: HeightRule): TableRowProperties {
this.root.push(new TableRowHeight(value, rule));
return this;
}