'Apps Script strikethrough whole row

Currently, I hide rows the following way:

    function onEdit(e){
  if (e.range.columnStart != 12 || e.value != "Kicked") return;
  SpreadsheetApp.getActiveSheet().hideRows(e.range.rowStart);
}

I would like the row to be crossed out once I set status (column 12) to "Kicked".

Is there any quick fix for this? Thanks a lot in advance! :)



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source