Exemple #1
0
 /// <summary>
 /// Initializes a new instance of the Axis class with the specified parent.
 /// </summary>
 internal Axis(DocumentObject parent) : base(parent) {}
Exemple #2
0
 /// <summary>
 /// Initializes a new instance of the XValues class with the specified parent.
 /// </summary>
 internal XValues(DocumentObject parent) : base(parent) {}
 /// <summary>
 /// Searches for the specified object and returns the zero-based index of the first occurrence.
 /// </summary>
 public int IndexOf(DocumentObject val)
 {
   return this.elements.IndexOf(val);
 }
 /// <summary>
 /// Initializes a new instance of the DocumentObjectCollection class with the specified parent.
 /// </summary>
 internal DocumentObjectCollection(DocumentObject parent) : base(parent)
 {
   this.elements = new ArrayList();
 }
Exemple #5
0
 /// <summary>
 /// Initializes a new instance of the Font class with the specified parent.
 /// </summary>
 internal Font(DocumentObject parent)
     : base(parent)
 { }
 /// <summary>
 /// Initializes a new instance of the SeriesCollection class with the specified parent.
 /// </summary>
 internal SeriesCollection(DocumentObject parent) : base(parent) {}
Exemple #7
0
 /// <summary>
 /// Initializes a new instance of the DocumentObjectCollection class with the specified parent.
 /// </summary>
 internal DocumentObjectCollection(DocumentObject parent) : base(parent)
 {
     this.elements = new ArrayList();
 }
Exemple #8
0
 /// <summary>
 /// Initializes a new instance of the DataLabel class with the specified parent.
 /// </summary>
 internal DataLabel(DocumentObject parent) : base(parent) {}
Exemple #9
0
 /// <summary>
 /// Inserts an element into the collection at the specified position.
 /// </summary>
 public virtual void InsertObject(int index, DocumentObject val)
 {
     this.elements.Insert(index, val);
 }
Exemple #10
0
 /// <summary>
 /// Searches for the specified object and returns the zero-based index of the first occurrence.
 /// </summary>
 public int IndexOf(DocumentObject val)
 {
     return(this.elements.IndexOf(val));
 }
 /// <summary>
 /// Initializes a new instance of the DocumentObjectCollection class with the specified parent.
 /// </summary>
 internal DocumentObjectCollection(DocumentObject parent)
     : base(parent)
 {
     _elements = new List <DocumentObject>();
 }
 /// <summary>
 /// Initializes a new instance of the FillFormat class with the specified parent.
 /// </summary>
 internal FillFormat(DocumentObject parent) : base(parent)
 {
 }
 /// <summary>
 /// Initializes a new instance of the DocumentObject class with the specified parent.
 /// </summary>
 public DocumentObject(DocumentObject parent)
 {
   this.parent = parent;
 }
Exemple #14
0
 /// <summary>
 /// Initializes a new instance of the LineFormat class with the specified parent.
 /// </summary>
 internal LineFormat(DocumentObject parent) : base(parent) { }
Exemple #15
0
 /// <summary>
 /// Initializes a new instance of the Gridlines class with the specified parent.
 /// </summary>
 internal Gridlines(DocumentObject parent) : base(parent)
 {
 }
 /// <summary>
 /// Initializes a new instance of the DocumentObjectCollection class with the specified parent.
 /// </summary>
 internal DocumentObjectCollection(DocumentObject parent)
     : base(parent)
 {
     _elements = new List<DocumentObject>();
 }
Exemple #17
0
 /// <summary>
 /// Initializes a new instance of the TickLabels class with the specified parent.
 /// </summary>
 internal TickLabels(DocumentObject parent) : base(parent)
 {
 }
Exemple #18
0
 /// <summary>
 /// Initializes a new instance of the PlotArea class with the specified parent.
 /// </summary>
 internal PlotArea(DocumentObject parent) : base(parent) { }
Exemple #19
0
 /// <summary>
 /// Initializes a new instance of the Chart class with the specified parent.
 /// </summary>
 internal Chart(DocumentObject parent) : base(parent)
 {
 }
Exemple #20
0
 /// <summary>
 /// Initializes a new instance of the FillFormat class with the specified parent.
 /// </summary>
 internal FillFormat(DocumentObject parent) : base(parent) {}
Exemple #21
0
 /// <summary>
 /// Initializes a new instance of the LineFormat class with the specified parent.
 /// </summary>
 internal LineFormat(DocumentObject parent) : base(parent)
 {
 }
 /// <summary>
 /// Inserts an element into the collection at the specified position.
 /// </summary>
 public virtual void InsertObject(int index, DocumentObject val)
 {
   this.elements.Insert(index, val);
 }
Exemple #23
0
 /// <summary>
 /// Initializes a new instance of the Axis class with the specified parent.
 /// </summary>
 internal Axis(DocumentObject parent) : base(parent)
 {
 }
 /// <summary>
 /// Adds the specified document object to the collection.
 /// </summary>
 public virtual void Add(DocumentObject value)
 {
   if (value != null)
     value.parent = this;
   this.elements.Add(value);
 }
 /// <summary>
 /// Initializes a new instance of the PlotArea class with the specified parent.
 /// </summary>
 internal PlotArea(DocumentObject parent) : base(parent)
 {
 }
Exemple #26
0
 /// <summary>
 /// Initializes a new instance of the TickLabels class with the specified parent.
 /// </summary>
 internal TickLabels(DocumentObject parent) : base(parent) { }
Exemple #27
0
 /// <summary>
 /// Initializes a new instance of the Legend class with the specified parent.
 /// </summary>
 internal Legend(DocumentObject parent) : base(parent)
 {
 }
 /// <summary>
 /// Initializes a new instance of the SeriesElements class with the specified parent.
 /// </summary>
 internal SeriesElements(DocumentObject parent) : base(parent) {}
Exemple #29
0
 /// <summary>
 /// Initializes a new instance of the Font class with the specified parent.
 /// </summary>
 internal Font(DocumentObject parent)
     : base(parent)
 {
 }
Exemple #30
0
 /// <summary>
 /// Initializes a new instance of the Legend class with the specified parent.
 /// </summary>
 internal Legend(DocumentObject parent) : base(parent) {}
Exemple #31
0
 /// <summary>
 /// Initializes a new instance of the Gridlines class with the specified parent.
 /// </summary>
 internal Gridlines(DocumentObject parent) : base(parent) {}
Exemple #32
0
 /// <summary>
 /// Initializes a new instance of the ChartObject class with the specified parent.
 /// </summary>
 internal ChartObject(DocumentObject parent) : base(parent) {}
 /// <summary>
 /// Initializes a new instance of the SeriesElements class with the specified parent.
 /// </summary>
 internal SeriesElements(DocumentObject parent) : base(parent)
 {
 }