C# Класс Mosa.Kernel.x86.Screen

Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
column uint
row uint

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

Метод Описание
Clear ( ) : void

Clears this instance.

ClearRow ( ) : void
Goto ( uint row, uint col ) : void

Goto the specified row and column.

GotoTop ( ) : void

Goto the top.

NextLine ( ) : void

Goto the next line.

RawWrite ( uint row, uint column, char chr, byte color ) : void

Writes the character.

SetCursor ( uint row, uint col ) : void

Sets the cursor.

UpdateCursor ( ) : void
Write ( StringBuffer value ) : void

Writes the string to the screen.

Write ( char chr ) : void

Writes the character.

Write ( string value ) : void

Writes the string to the screen.

Write ( uint val ) : void

Writes the specified value.

Write ( uint val, byte digits, int size ) : void

Writes the specified value.

Приватные методы

Метод Описание
Next ( ) : void

Next Column

Skip ( uint skip ) : void

Skips the specified skip.

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

Clear() публичный статический Метод

Clears this instance.
public static Clear ( ) : void
Результат void

ClearRow() публичный статический Метод

public static ClearRow ( ) : void
Результат void

Goto() публичный статический Метод

Goto the specified row and column.
public static Goto ( uint row, uint col ) : void
row uint The row.
col uint The col.
Результат void

GotoTop() публичный статический Метод

Goto the top.
public static GotoTop ( ) : void
Результат void

NextLine() публичный статический Метод

Goto the next line.
public static NextLine ( ) : void
Результат void

RawWrite() публичный статический Метод

Writes the character.
public static RawWrite ( uint row, uint column, char chr, byte color ) : void
row uint
column uint
chr char The character.
color byte
Результат void

SetCursor() публичный статический Метод

Sets the cursor.
public static SetCursor ( uint row, uint col ) : void
row uint The row.
col uint The col.
Результат void

UpdateCursor() публичный статический Метод

public static UpdateCursor ( ) : void
Результат void

Write() публичный статический Метод

Writes the string to the screen.
public static Write ( StringBuffer value ) : void
value Mosa.Runtime.StringBuffer The string value to write to the screen.
Результат void

Write() публичный статический Метод

Writes the character.
public static Write ( char chr ) : void
chr char The character.
Результат void

Write() публичный статический Метод

Writes the string to the screen.
public static Write ( string value ) : void
value string The string value to write to the screen.
Результат void

Write() публичный статический Метод

Writes the specified value.
public static Write ( uint val ) : void
val uint The val.
Результат void

Write() публичный статический Метод

Writes the specified value.
public static Write ( uint val, byte digits, int size ) : void
val uint The val.
digits byte The digits.
size int The size.
Результат void

Описание свойств

column публичное статическое свойство

public static uint column
Результат uint

row публичное статическое свойство

public static uint row
Результат uint