Braincase.GanttChart.PrintViewport.PrintViewport C# (CSharp) Méthode

PrintViewport() public méthode

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
Résultat 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;
        }