コード例 #1
0
        public string GetRtf(FastColoredTextBox tb)
        {
            this.tb = tb;
            Range sel = new Range(tb);

            sel.SelectAll();
            return(GetRtf(sel));
        }
コード例 #2
0
ファイル: Export.cs プロジェクト: csuffyy/Sumerics
        public String GetHtml(FastColoredTextBox tb)
        {
            _tb = tb;
            var sel = new Range(tb);

            sel.SelectAll();
            return(GetHtml(sel));
        }