Gets the value of the cell that is expected to be a boolean. This property is designed to access the logical value contained within the cell and it is useful in logical operations, condition checks, or representing binary states.
public bool BoolCellValue { get; }
The boolean value of the cell.
The BoolCellValue property simplifies the process of dealing with cells that are specifically intended to hold binary data, such as true/false or yes/no values. This property is crucial in scenarios where sheets are used for logical operations or any application requiring binary decisions.