AddTextBox(Initial text stored in the text box: WideString; A1-style worksheet range such as, A1-style worksheet range such as: Integer):
TXLSTextBox function
TXLSTextBox
function AddTextBox(Initial text stored in the text box: WideString; A1-style worksheet range such as, A1-style worksheet range such as: Integer): TXLSTextBox;
function AddTextBox(Initial text stored in the text box: WideString; TextBox: TXLSTextBox;: WideString): TXLSTextBox;
Parametrai
| Initial text stored in the text box |
A1-style worksheet range such as |
| A1-style worksheet range such as |
One-based row and column for the lower-right anchor |
| A1-style worksheet range such as |
); TextBox.Fill.ForeColor.RGB := $00FFFF; TextBox := Workbook.Sheets[ |
| TextBox: TXLSTextBox; |
TextBox := Workbook.Sheets[ C4:F8 |
); TextBox.Fill.ForeColor.RGB := $00FFFF; TextBox := Workbook.Sheets[
].AddTextBox(
); TextBox.Fill.ForeColor.RGB := $00FFFF; TextBox := Workbook.Sheets[
var
TextBox: TXLSTextBox;
begin
TextBox := Workbook.Sheets[1].AddTextBox(
'Standalone note',
2, 3,
5, 7);
TextBox.Fill.ForeColor.RGB := $00FFFF;
TextBox := Workbook.Sheets[1].AddTextBox(
'Range note',
'C4:F8');
end;
].AddTextBox(