GetStartSelection() public method

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

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

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