I have used DocX library to create a .docx document from text in my TextBoxs. I have a problem that I can't assign size of nullable variable to other variable (only can assign to value)
var infoFormatting = new Formatting();
infoFormatting.Size = txt_Info.Font.Size //txt_Info is a TextBox
How can I solve this problem? Thanks.