Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17177 программистов и 1833 робота. Сейчас ищут 1715 программистов ...
Worksheet::writeNote
Вернуться к: Spreadsheet_Excel_Writer
Worksheet::writeNote
Worksheet::writeNote – Writes a note associated with the cell given by the row and column.
Synopsis
require_once "Spreadsheet/Excel/Writer.php";
void Worksheet::writeNote ( integer $row , integer $col , string $note )
Writes a note associated with the cell given by the row and column. NOTE records don't have a length limit.
Parameter
-
integer $row - Zero indexed row
-
integer $col - Zero indexed column
-
string $note - The note to write
Note
This function can not be called statically.
Example
Using writeNote()
<?php
?>
Вернуться к: Spreadsheet_Excel_Writer