GetStartSelection() public method

public GetStartSelection ( ) : Reko.Gui.Windows.Controls.TextPointer
return Reko.Gui.Windows.Controls.TextPointer
Esempio n. 1
0
            public Painter(TextView outer, Graphics g)
            {
                this.outer    = outer;
                this.graphics = g;

                selStart = outer.GetStartSelection();
                selEnd   = outer.GetEndSelection();
            }
Esempio n. 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();
            }
Esempio n. 3
0
            public Painter(TextView outer, Graphics g)
            {
                this.outer = outer;
                this.graphics = g;

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