コード例 #1
0
        public RichTextControl()
        {
            InitializeComponent();

            //Init document
            document = new SmartDeviceProject2.TextClasses.Document();
        }
コード例 #2
0
ファイル: Paragraph.cs プロジェクト: jithuin/infogeezer
		//CONSTRUCTORS
		Paragraph(Document pparent)
		{
			this.lines = new List<Line>();
			this.parent = pparent;
		}