Demonstrates examples for the functions rmp(), rmr(), rmt(), rmtp()
Further information about Word (Fill) you will found here.
Deletes line and paragraph, if the value matches.
Delete the paragraph if the value is empty.
e.g. function in the Word document: tfName.rmp()
Example 1
Delete the paragraph if the value is "max".
e.g. function in the Word document: tfName2.rmp(max)
Example 2
Deletes the table row, if the value matches.
Delete the table row if the value is empty.
e.g. function in the Word document: tfName3.rmr()
Example 3
Delete the table row if the value is "max"
e.g. function in the Word document: tfName4.rmp(max)
Example 4
Delete the the line of the table, if the value 2 or 3 is.
e.g. function in the Word document:
selMulti.rmp(1).rmp(4).con(2).rmr(1).rmp(0)
selMulti.rmp(1).rmp(4).con(3).rmr(1).rmp(0)
Example 4.1
Deletes the table, if the value matches.
Delete the table if the value is empty.
e.g. function in the Word document: tfName5.rmt()
Example 5
Delete the table if the value is "max".
e.g. function in the Word document: tfName6.rmt(max)
Example 6
Deletes the table and the following paragraphs, if the value matches.
Delete the table and the following paragraphs if the value is empty
e.g. function in the Word document: tfName7.rmtp()
Example 7
Delete the table and the following paragraphs if the value is "max".
e.g. function in the Word document: tfName8.rmtp(max)
Example 8