[]
Gets or sets whether strikethrough formatting is applied to the font.
bool Strikethrough { get; set; }
Property Strikethrough As Boolean
IFont font = worksheet.Range["A1"].Font;
font.Strikethrough = true;
bool strikethrough = font.Strikethrough;