NPlot.TextItem.TextItem C# (CSharp) Метод

TextItem() публичный Метод

Constructor
public TextItem ( PointD position, string text ) : System.Drawing
position PointD The position the text starts.
text string The text.
Результат System.Drawing
        public TextItem(PointD position, string text)
        {
            start_ = position;
            text_ = text;
            Init();
        }