Beispiel #1
0
        /// <summary>
        /// The width and height properties return the dimensions of a page in pixels.
        /// </summary>
        /// <returns></returns>
        public int GetWidth()
        {
            Error_Control_Block ecb = new Error_Control_Block();
            int width = 0, height = 0;

            Check(ISYS11df.IGR_Get_Page_Dimensions(Handle, ref width, ref height, ref ecb), ecb);
            return(width);
        }