Limitations
Read only.
Gets the drawing control associated with the drawing frame. It must be of the type TXText
public object Drawing { get; }
Enter an introductory text for your TXText
TXTextControl.Drawing.TXDrawingControl myDrawingControl = new TXTextControl.Drawing.TXDrawingControl();
TXTextControl.DataVisualization.DrawingFrame drawingFrame = new TXTextControl.DataVisualization.DrawingFrame(myDrawingControl);
drawingFrame.Activate();
textControl1.Drawings.Add(drawingFrame, -1);
object myDrawing = drawingFrame.Drawing;
System.Windows.Forms.MessageBox.Show("The Type of the myDrawing object is: " + myDrawing.GetType().ToString());
Read only.