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

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).

This macro is defined as:

      <tr>
        <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>