Console spreadsheet для PascalABC.Net: различия между версиями

Содержимое удалено Содержимое добавлено
Нет описания правки
Нет описания правки
Строка 12:
current_spreadsheet_ceil_column_coordinate:integer;
current_spreadsheet_background_color:string;
current_spreadsheet_ceil_content,current_spreadsheet_border_color,current_spreadsheet_text_color:string;
string_spreadsheet:array[0..80,0..80] of string;
int_spreadsheet:array[0..80,0..80] of string;
Строка 61:
End;
 
Procedure Console_spreadsheet_set_ceil_content(current_spreadsheet_ceil_string_coordinate:integer;current_spreadsheet_ceil_column_coordinate:integer;current_spreadsheet_ceil_content:string); // доделать
begin
If (current_spreadsheet_ceil_string_coordinate>spreadsheet_max_size_X) or (current_spreadsheet_ceil_column_coordinate>spreadsheet_max_size_Y) then
Begin
CRT.TextBackground(white); CRT.TextColor(Black); Console.System.WriteLine('The cell is outside the table.');
End;
end;
</source>