GetStartSelection() public method

public GetStartSelection ( ) : Reko.Gui.Windows.Controls.TextPointer
return Reko.Gui.Windows.Controls.TextPointer
コード例 #1
0
            public Painter(TextView outer, Graphics g)
            {
                this.outer    = outer;
                this.graphics = g;

                selStart = outer.GetStartSelection();
                selEnd   = outer.GetEndSelection();
            }
コード例 #2
0
            public Painter(TextView outer, Graphics g, StyleStack styleStack)
            {
                this.outer = outer;
                this.graphics = g;
                this.styleStack = styleStack;

                selStart = outer.GetStartSelection();
                selEnd = outer.GetEndSelection();
            }
コード例 #3
0
ファイル: TextView.Painter.cs プロジェクト: nemerle/reko
            public Painter(TextView outer, Graphics g)
            {
                this.outer = outer;
                this.graphics = g;

                selStart = outer.GetStartSelection();
                selEnd = outer.GetEndSelection();
            }