C# Класс IronPythonConsoleControl.OutputLine

A line of output. Caches the rendering of this line for a given console width.
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
Append ( OutputSpan span ) : void
GetHeight ( Graphics g, int Width ) : int

Given a width, returns the height of this line, including wrapped lines.

OutputLine ( ) : System
Print ( Graphics graphics, int yPosition ) : void

Draws the content of the line to the graphics at the position (0, yPosition)

Описание методов

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

public Append ( OutputSpan span ) : void
span OutputSpan
Результат void

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

Given a width, returns the height of this line, including wrapped lines.
public GetHeight ( Graphics g, int Width ) : int
g System.Drawing.Graphics
Width int
Результат int

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

public OutputLine ( ) : System
Результат System

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

Draws the content of the line to the graphics at the position (0, yPosition)
public Print ( Graphics graphics, int yPosition ) : void
graphics System.Drawing.Graphics
yPosition int
Результат void