Ejemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the Axis class with the specified parent.
 /// </summary>
 internal Axis(DocumentObject parent) : base(parent) {}
Ejemplo n.º 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();
 }
Ejemplo n.º 5
0
 /// <summary>
 /// Initializes a new instance of the Font class with the specified parent.
 /// </summary>
 internal Font(DocumentObject parent)
     : base(parent)
 { }
Ejemplo n.º 6
0
 /// <summary>
 /// Initializes a new instance of the SeriesCollection class with the specified parent.
 /// </summary>
 internal SeriesCollection(DocumentObject parent) : base(parent) {}
Ejemplo n.º 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();
 }
Ejemplo n.º 8
0
 /// <summary>
 /// Initializes a new instance of the DataLabel class with the specified parent.
 /// </summary>
 internal DataLabel(DocumentObject parent) : base(parent) {}
Ejemplo n.º 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);
 }
Ejemplo n.º 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));
 }
Ejemplo n.º 11
0
 /// <summary>
 /// Initializes a new instance of the DocumentObjectCollection class with the specified parent.
 /// </summary>
 internal DocumentObjectCollection(DocumentObject parent)
     : base(parent)
 {
     _elements = new List <DocumentObject>();
 }
Ejemplo n.º 12
0
 /// <summary>
 /// Initializes a new instance of the FillFormat class with the specified parent.
 /// </summary>
 internal FillFormat(DocumentObject parent) : base(parent)
 {
 }
Ejemplo n.º 13
0
 /// <summary>
 /// Initializes a new instance of the DocumentObject class with the specified parent.
 /// </summary>
 public DocumentObject(DocumentObject parent)
 {
   this.parent = parent;
 }
Ejemplo n.º 14
0
 /// <summary>
 /// Initializes a new instance of the LineFormat class with the specified parent.
 /// </summary>
 internal LineFormat(DocumentObject parent) : base(parent) { }
Ejemplo n.º 15
0
 /// <summary>
 /// Initializes a new instance of the Gridlines class with the specified parent.
 /// </summary>
 internal Gridlines(DocumentObject parent) : base(parent)
 {
 }
Ejemplo n.º 16
0
 /// <summary>
 /// Initializes a new instance of the DocumentObjectCollection class with the specified parent.
 /// </summary>
 internal DocumentObjectCollection(DocumentObject parent)
     : base(parent)
 {
     _elements = new List<DocumentObject>();
 }
Ejemplo n.º 17
0
 /// <summary>
 /// Initializes a new instance of the TickLabels class with the specified parent.
 /// </summary>
 internal TickLabels(DocumentObject parent) : base(parent)
 {
 }
Ejemplo n.º 18
0
 /// <summary>
 /// Initializes a new instance of the PlotArea class with the specified parent.
 /// </summary>
 internal PlotArea(DocumentObject parent) : base(parent) { }
Ejemplo n.º 19
0
 /// <summary>
 /// Initializes a new instance of the Chart class with the specified parent.
 /// </summary>
 internal Chart(DocumentObject parent) : base(parent)
 {
 }
Ejemplo n.º 20
0
 /// <summary>
 /// Initializes a new instance of the FillFormat class with the specified parent.
 /// </summary>
 internal FillFormat(DocumentObject parent) : base(parent) {}
Ejemplo n.º 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);
 }
Ejemplo n.º 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);
 }
Ejemplo n.º 25
0
 /// <summary>
 /// Initializes a new instance of the PlotArea class with the specified parent.
 /// </summary>
 internal PlotArea(DocumentObject parent) : base(parent)
 {
 }
Ejemplo n.º 26
0
 /// <summary>
 /// Initializes a new instance of the TickLabels class with the specified parent.
 /// </summary>
 internal TickLabels(DocumentObject parent) : base(parent) { }
Ejemplo n.º 27
0
 /// <summary>
 /// Initializes a new instance of the Legend class with the specified parent.
 /// </summary>
 internal Legend(DocumentObject parent) : base(parent)
 {
 }
Ejemplo n.º 28
0
 /// <summary>
 /// Initializes a new instance of the SeriesElements class with the specified parent.
 /// </summary>
 internal SeriesElements(DocumentObject parent) : base(parent) {}
Ejemplo n.º 29
0
 /// <summary>
 /// Initializes a new instance of the Font class with the specified parent.
 /// </summary>
 internal Font(DocumentObject parent)
     : base(parent)
 {
 }
Ejemplo n.º 30
0
 /// <summary>
 /// Initializes a new instance of the Legend class with the specified parent.
 /// </summary>
 internal Legend(DocumentObject parent) : base(parent) {}
Ejemplo n.º 31
0
 /// <summary>
 /// Initializes a new instance of the Gridlines class with the specified parent.
 /// </summary>
 internal Gridlines(DocumentObject parent) : base(parent) {}
Ejemplo n.º 32
0
 /// <summary>
 /// Initializes a new instance of the ChartObject class with the specified parent.
 /// </summary>
 internal ChartObject(DocumentObject parent) : base(parent) {}
Ejemplo n.º 33
0
 /// <summary>
 /// Initializes a new instance of the SeriesElements class with the specified parent.
 /// </summary>
 internal SeriesElements(DocumentObject parent) : base(parent)
 {
 }