ChartCollection

ChartCollection class

Incapsula una raccolta diChart oggetti.

public class ChartCollection : CollectionBase<Chart>

Proprietà

NomeDescrizione
Capacity { get; set; }
Count { get; }
Item { get; }Ottiene ilChart elemento all’indice specificato. (2 indexers)
Item { get; set; }

Metodi

NomeDescrizione
Add(ChartType, int, int, int, int)Aggiunge un grafico alla raccolta.
Add(ChartType, string, bool, int, int, int, int)Aggiunge un grafico alla raccolta.
AddFloatingChart(ChartType, int, int, int, int)Aggiunge un grafico alla raccolta.
BinarySearch(Chart)
BinarySearch(Chart, IComparer<Chart>)
BinarySearch(int, int, Chart, IComparer<Chart>)
Clear()Cancella tutti i grafici. (2 methods)
Contains(Chart)
CopyTo(Chart[])
CopyTo(Chart[], int)
CopyTo(int, Chart[], int, int)
Exists(Predicate<Chart>)
Find(Predicate<Chart>)
FindAll(Predicate<Chart>)
FindIndex(Predicate<Chart>)
FindIndex(int, Predicate<Chart>)
FindIndex(int, int, Predicate<Chart>)
FindLast(Predicate<Chart>)
FindLastIndex(Predicate<Chart>)
FindLastIndex(int, Predicate<Chart>)
FindLastIndex(int, int, Predicate<Chart>)
GetEnumerator()
IndexOf(Chart)
IndexOf(Chart, int)
IndexOf(Chart, int, int)
LastIndexOf(Chart)
LastIndexOf(Chart, int)
LastIndexOf(Chart, int, int)
RemoveAt(int)Rimuove un grafico in corrispondenza dell’indice specifico. (2 methods)

Esempi

[C#]

Workbook workbook = new Workbook();

ChartCollection charts = workbook.Worksheets[0].Charts;

[Visual Basic]

Dim workbook as Workbook = new Workbook()

Dim ChartCollection as Charts = workbook.Worksheets(0).Charts

Guarda anche