GetEndSelection() public méthode

public GetEndSelection ( ) : Reko.Gui.Windows.Controls.TextPointer
Résultat Reko.Gui.Windows.Controls.TextPointer
Exemple #1
0
            public Painter(TextView outer, Graphics g)
            {
                this.outer    = outer;
                this.graphics = g;

                selStart = outer.GetStartSelection();
                selEnd   = outer.GetEndSelection();
            }
            public Painter(TextView outer, Graphics g, StyleStack styleStack)
            {
                this.outer = outer;
                this.graphics = g;
                this.styleStack = styleStack;

                selStart = outer.GetStartSelection();
                selEnd = outer.GetEndSelection();
            }
Exemple #3
0
            public Painter(TextView outer, Graphics g)
            {
                this.outer = outer;
                this.graphics = g;

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