OfficeOpenXml.ExcelCell.SetValueRichText C# (CSharp) Method

SetValueRichText() private method

private SetValueRichText ( object value ) : void
value object
return void
        internal void SetValueRichText(object value)
        {
            _value = value;
            if (value is string) DataType = "s"; else DataType = "";
            Formula = "";
        }