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

Содержимое удалено Содержимое добавлено
Строка 188:
<source lang="pascal">Console_spreadsheet_set_background_color('red');</source>
===Функция «Console_spreadsheet_set_text_color(current_spreadsheet_text_color)»===
Данная функция позволяет определить цвет для ячейки с координатами X и Y в таблицы. Для использования функции надо вместо current_spreadsheet_text_color писать:
<source lang="pascal">Console_spreadsheet_set_text_color({X},{Y},{имя цвета (по английски)});</source>
Например:
<source lang="pascal">Console_spreadsheet_set_text_color(24,2,'red');</source>
=== Функция «Console_spreadsheet_set_ceil_content(current_spreadsheet_ceil_string_coordinate,current_spreadsheet_ceil_column_coordinate,current_spreadsheet_ceil_content)»===
Данная функция позволяет определить значение для ячейки с координатами X и Y в таблицы. Для использования функции надо вместо current_spreadsheet_ceil_string_coordinate, current_spreadsheet_ceil_column_coordinate и current_spreadsheet_ceil_content писать:
<source lang="pascal">Console_spreadsheet_set_ceil_content({X},{Y},{значение ячейки});</source>
Например:
<source lang="pascal">Console_spreadsheet_set_ceil_content(2,5,'hello');</source>
 
==Немного об «окнах ввода»==