AutoFill
Contenuti
[
Nascondere
]AutoFill(Range)
Tutti riempiono automaticamente l’intervallo di destinazione.
public void AutoFill(Range target)
Parametro | Tipo | Descrizione |
---|---|---|
target | Range | l’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
- class Range
- spazio dei nomi Aspose.Cells
- assemblea Aspose.Cells
AutoFill(Range, AutoFillType)
Tutti riempiono automaticamente l’intervallo di destinazione.
public void AutoFill(Range target, AutoFillType autoFillType)
Parametro | Tipo | Descrizione |
---|---|---|
target | Range | La gamma mirata. |
autoFillType | AutoFillType | Il tipo di riempimento automatico. |
Guarda anche
- enum AutoFillType
- class Range
- spazio dei nomi Aspose.Cells
- assemblea Aspose.Cells