PdfRpt.Export.ExportToXml.isByteArray C# (CSharp) Method

isByteArray() private static method

private static isByteArray ( CellData item ) : bool
item CellData
return bool
        private static bool isByteArray(CellData item)
        {
            return (item.PropertyValue != null) &&
                   (item.PropertyValue.GetType() == typeof(byte[]));
        }