Remove WebStyle via code?

Say I do this in Cell Click:

Me.Cell(Row, Column).CellStyle = MyStyle

Then I want to remove MyStyle from that control in that same method (say it’s a toggle on Cell Click that’s at work here). How would I do that?

Me.Cell(Row, Column).CellStyle = nil

Perfect. That works. Thanks.