ChartCollection

ChartCollection class

Encapsule une collection deChart objets.

public class ChartCollection : CollectionBase<Chart>

Propriétés

NomLa description
Capacity { get; set; }
Count { get; }
Item { get; }Obtient leChart élément à l’index spécifié. (2 indexers)
Item { get; set; }

Méthodes

NomLa description
Add(ChartType, int, int, int, int)Ajoute un graphique à la collection.
Add(ChartType, string, bool, int, int, int, int)Ajoute un graphique à la collection.
AddFloatingChart(ChartType, int, int, int, int)Ajoute un graphique à la collection.
BinarySearch(Chart)
BinarySearch(Chart, IComparer<Chart>)
BinarySearch(int, int, Chart, IComparer<Chart>)
Clear()Effacer tous les graphiques. (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)Supprimer un graphique à l’index spécifique. (2 methods)

Exemples

[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

Voir également