示例#1
0
        public override Boolean IsEmpty(Boolean includeFormats)
        {
            if (includeFormats && !StyleValue.Equals(Worksheet.StyleValue))
            {
                return(false);
            }

            return(base.IsEmpty(includeFormats));
        }
示例#2
0
        public override Boolean IsEmpty(XLCellsUsedOptions options)
        {
            if (options.HasFlag(XLCellsUsedOptions.NormalFormats) &&
                !StyleValue.Equals(Worksheet.StyleValue))
            {
                return(false);
            }

            return(base.IsEmpty(options));
        }