@tableRowSeparatorGap(COLSPAN, [LINEHEIGHT], [SEPARATORCOLOR], [TEXTLABEL], [TRID])

Insert a blank table row separator gap spanning "COLSPAN" columns.

The following parameters are recognized:

COLSPAN

The number of columns (COLSPAN) to span in the table row.

[LINEHEIGHT]

Optional line height of the separator gap: (defaults to: "6px" if omitted).

[SEPARATORCOLOR]

Optional separator background color: (defaults to color: "@darkgray()" if omitted).

[TEXTLABEL]

Optional centered text label: (defaults to: "space" if omitted).

[TRID]

Optional ID for the table row: (defaults to: omitted).

This macro is defined as:

      <tr@ifEqual("@param(4)","","","@htmlAttr("id","@param(4)")")>
        <td@htmlAttr("colspan","@param(0)")
              @htmlAttr("style","text-align: center; line-height: @fnb("@param(1)","6px"); background-color: @fnb("@param(2)","@darkgray()");")>
              @ifEqual("@param(3)","","&nbsp;","@param(3)")
        </td>
      </tr>