Braincase.GanttChart.PrintViewport.PrintViewport C# (CSharp) Метод

PrintViewport() публичный Метод

public PrintViewport ( Graphics graphics, float worldWidth, float worldHeight, int deviceWidth, int deviceHeight, int marginLeft, int marginTop ) : System
graphics System.Drawing.Graphics
worldWidth float
worldHeight float
deviceWidth int
deviceHeight int
marginLeft int
marginTop int
Результат System
        public PrintViewport(Graphics graphics,
            float worldWidth, float worldHeight,
            int deviceWidth, int deviceHeight,
            int marginLeft, int marginTop)
        {
            WorldWidth = worldWidth;
            WorldHeight = worldHeight;

            _mDeviceWidth = deviceWidth;
            _mDeviceHeight = deviceHeight;

            _mMarginTop = marginTop;
            _mMarginLeft = marginLeft;
        }