HotXLS Belgeleri
İçindekiler
Ana sayfa
Genel bakış
TGridToXLS
IXLSWorkbook
Ana sayfa
İçindekiler
Genel bakış
AddAfter yöntem
Creates a new Worksheet after specified Worksheet. The new Worksheet becomes the active sheet
Sözdizimi
function AddAfter(Index: Integer): TXLSWorksheet;
function AddAfter(Name: WideString): TXLSWorksheet;
function AddAfter(Worksheet: TXLSWorksheet): TXLSWorksheet;
Index
Integer. An index of Worksheet that specifies the sheet after which the new sheet is added
Name
WideString. A name of Worksheet that specifies the sheet after which the new sheet is added
Worksheet
TXLSWorksheet. An object that specifies the sheet after which the new sheet is added
Örnek
This example creates new Worksheet after the sheet with name 'Sheet1'
Var Worksheet: TXLSWorksheet;
begin
Worksheet := Workbook.Sheets.AddAfter('Sheet1');
Worksheet.Name := 'After Sheet1';
end;
This example creates new Worksheet after first Worksheet
Workbook.Sheets.AddAfter(1);
Copyright © 2010-2026 losLab Software