GetPrecedents
Cell.GetPrecedents method
Ottiene tutti i riferimenti che appaiono nella formula di questa cella.
public ReferredAreaCollection GetPrecedents()
Valore di ritorno
Raccolta di tutti i riferimenti che appaiono nella formula di questa cella.
Osservazioni
Restituisce null se questa non è una cella di formula.Tutti i riferimenti che appaiono nella formula di questa cella verranno restituiti indipendentemente dal fatto che siano referenziati o meno durante il calcolo. Ad esempio, sebbene la cella A2 nella formula “=IF(TRUE,A1,A2)” non sia utilizzata durante il calcolo, è ancora presi come precedenti della formula. Per ottenere quei riferimenti che influenzano solo il calcolo, utilizzareGetPrecedentsInCalculation
.
Esempi
[C#]
Workbook workbook = new Workbook();
Cells cells = workbook.Worksheets[0].Cells;
cells["A1"].Formula = "=B1+SUM(B1:B10)+[Book1.xls]Sheet1!A1";
ReferredAreaCollection areas = cells["A1"].GetPrecedents();
for (int i = 0; i < areas.Count; i++)
{
ReferredArea area = areas[i];
StringBuilder stringBuilder = new StringBuilder();
if (area.IsExternalLink)
{
stringBuilder.Append("[");
stringBuilder.Append(area.ExternalFileName);
stringBuilder.Append("]");
}
stringBuilder.Append(area.SheetName);
stringBuilder.Append("!");
stringBuilder.Append(CellsHelper.CellIndexToName(area.StartRow, area.StartColumn));
if (area.IsArea)
{
stringBuilder.Append(":");
stringBuilder.Append(CellsHelper.CellIndexToName(area.EndRow, area.EndColumn));
}
Console.WriteLine(stringBuilder.ToString());
}
[Visual Basic]
Dim workbook As Workbook = New Workbook()
Dim cells As Cells = workbook.Worksheets(0).Cells
cells("A1").Formula = "= B1 + SUM(B1:B10) + [Book1.xls]Sheet1!A1"
Dim areas As ReferredAreaCollection = cells("A1").GetPrecedents()
For i As Integer = 0 To areas.Count - 1
Dim area As ReferredArea = areas(i)
Dim stringBuilder As StringBuilder = New StringBuilder()
If (area.IsExternalLink) Then
stringBuilder.Append("[")
stringBuilder.Append(area.ExternalFileName)
stringBuilder.Append("]")
End If
stringBuilder.Append(area.SheetName)
stringBuilder.Append("!")
stringBuilder.Append(CellsHelper.CellIndexToName(area.StartRow, area.StartColumn))
If (area.IsArea) Then
stringBuilder.Append(":")
stringBuilder.Append(CellsHelper.CellIndexToName(area.EndRow, area.EndColumn))
End If
Console.WriteLine(stringBuilder.ToString())
Next
Guarda anche
- class ReferredAreaCollection
- class Cell
- spazio dei nomi Aspose.Cells
- assemblea Aspose.Cells