Inserts a new chart in a Text Control document.

Add(DataVisualization.ChartFrame, Int)

public bool Add(DataVisualization.ChartFrame chartFrame, int textPosition);
Public Function Add(ByVal chartFrame As DataVisualization.ChartFrame, ByVal textPosition As Integer) As Boolean

Add(DataVisualization.ChartFrame, HorizontalAlignment, Int, FrameInsertionMode)

public bool Add(DataVisualization.ChartFrame chartFrame, HorizontalAlignment alignment, int textPosition, FrameInsertionMode insertionMode);
Public Function Add(ByVal chartFrame As DataVisualization.ChartFrame, ByVal alignment As HorizontalAlignment, ByVal textPosition As Integer, _
  ByVal insertionMode As FrameInsertionMode) As Boolean

Add(DataVisualization.ChartFrame, System.Drawing.Point, Int, FrameInsertionMode)

public bool Add(DataVisualization.ChartFrame chartFrame, System.Drawing.Point location, int textPosition, FrameInsertionMode insertionMode);
Public Function Add(ByVal chartFrame As DataVisualization.ChartFrame, ByVal location As System.Drawing.Point, ByVal textPosition As Integer, _
  ByVal insertionMode As FrameInsertionMode) As Boolean

Add(DataVisualization.ChartFrame, Int, System.Drawing.Point, FrameInsertionMode)

public bool Add(DataVisualization.ChartFrame chartFrame, int page, System.Drawing.Point location, FrameInsertionMode insertionMode);
Public Function Add(ByVal chartFrame As DataVisualization.ChartFrame, ByVal page As Integer, ByVal location As System.Drawing.Point, _
  ByVal insertionMode As FrameInsertionMode) As Boolean

Add(DataVisualization.ChartFrame, System.Drawing.Point, FrameInsertionMode)

public bool Add(DataVisualization.ChartFrame chartFrame, System.Drawing.Point location, FrameInsertionMode insertionMode);
Public Function Add(ByVal chartFrame As DataVisualization.ChartFrame, ByVal location As System.Drawing.Point, _
  ByVal insertionMode As FrameInsertionMode) As Boolean

Parameters

Parameter Description
chartFrame Specifies the chart and its frame to add.
textPosition Specifies the text position at which the chart is to be inserted. If -1 is specified, the chart is inserted at the current input position.
alignment Specifies the chart's horizontal alignment. It can be one of the HorizontalAlignment values:
Event Description
Left The chart is left aligned, relative to the paragraph to which it is anchored.
Right The chart is right aligned, relative to the paragraph to which it is anchored.
Centered The chart is centered, relative to the paragraph to which it is anchored.
Justify This value is not supported for charts.
location Specifies the location, in twips, at which the chart is to be inserted.
insertionMode Specifies how the text flow is handled. It can be one of the following values of the FrameInsertionMode enumeration:
Event Description
AboveTheText The chart is inserted at a certain geometrical location above the text. This means that the chart overwrites the text.
BelowTheText The chart is inserted at a certain geometrical location below the text. This means that the text overwrites the chart.
DisplaceCompleteLines The text stops at the top and continues at the bottom of the chart.
DisplaceText The text flows around the chart and empty areas at the left and right side are filled.
Other Vaues All other values cannot be used with the ChartCollection.Add method.
page Specifies the number of a page beginning with 1 where the chart is located.

Return Value

The return value is true, if the chart could be added. Otherwise, it is false.