CSReportPaint.cGlobals.getBitmapSize C# (CSharp) Метод

getBitmapSize() публичный статический Метод

public static getBitmapSize ( Image image, int &imgWidth, int &imgHeight, bool inTwips ) : void
image Image
imgWidth int
imgHeight int
inTwips bool
Результат void
        public static void getBitmapSize(Image image, out int imgWidth, out int imgHeight, bool inTwips)
        {
            imgWidth = image.Width;
            imgHeight = image.Height;
        }