...
IF Type = Type::Sale THEN
txt += FormatPerText("EC %") + FormatTextAmt("EC Amount",FALSE) + GetPropertyLocation("Property Location") +
PADSTR("Property Tax Account No.",25,' ') + PADSTR('0',15,'0') +
PADSTR('',4,'0') + PADSTR('0',15,'0') + PADSTR('',56,' ')
ELSE
// Delete the following line.
txt += PADSTR('',19,' ') + GetPropertyLocation("Property Location") + PADSTR("Property Tax Account No.",25,' ') +
PADSTR('0',15,'0') + PADSTR('',4,' ') + PADSTR('0',15,'0') + PADSTR('',56,' ');
...
...
IF Type = Type::Sale THEN
txt += FormatPerText("EC %") + FormatTextAmt("EC Amount",FALSE) + GetPropertyLocation("Property Location") +
PADSTR("Property Tax Account No.",25,' ') + PADSTR('0',15,'0') +
PADSTR('',4,'0') + PADSTR('0',15,'0') + PADSTR('',56,' ')
ELSE
// Add the following line.
txt += PADSTR('',135,' ');
...