AutoFill

AutoFill(Range)

Tutti riempiono automaticamente l’intervallo di destinazione.

public void AutoFill(Range target)
ParametroTipoDescrizione
targetRangel’intervallo di destinazione.

Esempi


[C#]

//Creazione di un'istanza di un oggetto cartella di lavoro
Workbook workbook = new Workbook();
// Ottieni le prime celle del foglio di lavoro.
Cells cells = workbook.Worksheets[0].Cells;
cells["A1"].PutValue(1);
cells["A2"].PutValue(2);
Aspose.Cells.Range source = cells.CreateRange("A1:A2");
Aspose.Cells.Range target = cells.CreateRange("A3:A10");
//riempi 3,4,5....10 nell'intervallo A3:A10
source.AutoFill(target);
//Salva il file Excel
workbook.Save("book1.xlsm");

 [Visual Basic]

'Creazione di un'istanza di un oggetto Workbook
Dim workbook As Workbook = New Workbook("Book1.xlsx")
// Ottieni le prime celle del foglio di lavoro.
Dim cells as Cells = workbook.Worksheets[0].Cells
cells("A1").PutValue(1)
cells("A2").PutValue(2)
Dim source as Aspose.Cells.Range = cells.CreateRange("A1:A2")
Dim target as Aspose.Cells.Range = cells.CreateRange("A3:A10")
'riempire 3,4,5....10 nell'intervallo A3:A10
source.AutoFill(target)
'Salva il file Excel
workbook.Save("book1.xlsm")

Guarda anche


AutoFill(Range, AutoFillType)

Tutti riempiono automaticamente l’intervallo di destinazione.

public void AutoFill(Range target, AutoFillType autoFillType)
ParametroTipoDescrizione
targetRangeLa gamma mirata.
autoFillTypeAutoFillTypeIl tipo di riempimento automatico.

Guarda anche