SwfDotNet.IO.Tags.Types.BitmapColorData.GetSizeOf C# (CSharp) Method

GetSizeOf() public method

Gets the size of.
public GetSizeOf ( ) : int
return int
        public int GetSizeOf()
        {
            if (bitmapPixelDataPix15 != null)
                return bitmapPixelDataPix15.Length * Pix15.GetSizeOf();
            else if (bitmapPixelDataPix24 != null)
                return bitmapPixelDataPix24.Length * Pix24.GetSizeOf();
            return 0;
        }