Главная / Создание Windows-приложений на основе Visual C# / Выберите правильное определение области печати страницы, полагая, что между областями страницы справедливы следующие отношения: Размеры страницы > Области печати > Области текста

Выберите правильное определение области печати страницы, полагая, что между областями страницы справедливы следующие отношения:

Размеры страницы > Области печати > Области текста

вопрос

Правильный ответ:

Graphics graphics = e.Graphics; … rectanglePrintArea = new RectangleF( e.MarginBounds.Left - (e.VisibleClipBounds.Width - graphics.PageBounds.Width)/2, e.MarginBounds.Top - (e.VisibleClipBounds.Height - graphics.PageBounds.Height)/2, e.MarginBounds.Width, e.MarginBounds.Height);
Graphics graphics = e.Graphics; … rectanglePrintArea = new RectangleF( e.MarginBounds.Top - (e.VisibleClipBounds.Width - graphics.PageBounds.Width)/2, e.MarginBounds.Left - (e.VisibleClipBounds.Height - graphics.PageBounds.Height)/2, e.MarginBounds.Width, e.MarginBounds.Height);
Graphics graphics = e.Graphics; … rectanglePrintArea = new RectangleF( e.MarginBounds.Top - (e.PageBounds.Height - graphics.VisibleClipBounds.Height)/2, e.MarginBounds.Left - (e.PageBounds.Width - graphics.VisibleClipBounds.Width)/2, e.MarginBounds.Width, e.MarginBounds.Height);
Graphics graphics = e.Graphics; … rectanglePrintArea = new RectangleF( e.MarginBounds.Left - (e.PageBounds.Width - graphics.VisibleClipBounds.Width)/2, e.MarginBounds.Top - (e.PageBounds.Height - graphics.VisibleClipBounds.Height)/2, e.MarginBounds.Width, e.MarginBounds.Height);
Graphics graphics = e.Graphics; … rectanglePrintArea = new RectangleF( e.MarginBounds.Left - (e.PageBounds.Width - graphics.VisibleClipBounds.Width)/2, e.MarginBounds.Top - (e.PageBounds.Height - graphics.VisibleClipBounds.Height)/2, e.MarginBounds.Height, e.MarginBounds.Width);
Сложность вопроса
74
Сложность курса: Создание Windows-приложений на основе Visual C#
77
Оценить вопрос
Очень сложно
Сложно
Средне
Легко
Очень легко
Комментарии:
Аноним
Кто находит вот эти вопросы интуит? Это же безумно легко
12 апр 2018
Оставить комментарий
Другие ответы на вопросы из темы программирование интуит.