GetStartSelection() 공개 메소드

public GetStartSelection ( ) : Reko.Gui.Windows.Controls.TextPointer
리턴 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
            public Painter(TextView outer, Graphics g)
            {
                this.outer = outer;
                this.graphics = g;

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