[de] Refactor names of methods related to page/column/section indexing

This commit is contained in:
Ilya Kirillov
2025-08-15 16:42:30 +03:00
parent 5ae6d7db37
commit f6ad4988e5
51 changed files with 292 additions and 345 deletions

View File

@ -77,7 +77,7 @@ $(function ()
assert.strictEqual(p2.GetPagesCount(), 2, "p2 have 2 pages");
assert.strictEqual(p2.IsEmptyPage(0) && !p2.IsEmptyPage(1), true, "p2 the first page is empty and the second is not");
assert.strictEqual(p3.GetPagesCount(), 1, "p3 have 1 page");
assert.strictEqual(p3.GetStartPageAbsolute(), 1, "check p3 start page number");
assert.strictEqual(p3.GetAbsoluteStartPage(), 1, "check p3 start page number");
});
QUnit.test("Test the case when a paragraph with the KeepNext property is followed by a table", function (assert)
@ -109,7 +109,7 @@ $(function ()
assert.strictEqual(p2.GetPagesCount(), 2, "p2 have 2 pages");
assert.strictEqual(p2.IsEmptyPage(0) && !p2.IsEmptyPage(1), true, "p2 the first page is empty and the second is not");
assert.strictEqual(table.GetPagesCount(), 1, "table have 1 page");
assert.strictEqual(table.GetStartPageAbsolute(), 1, "check table start page number");
assert.strictEqual(table.GetAbsoluteStartPage(), 1, "check table start page number");
});
});