XPTable.Models.Table.DrawReversibleLine C# (CSharp) Method

DrawReversibleLine() private method

Draws a reversible line at the specified screen x-coordinate that is the height of the PseudoClientRect
private DrawReversibleLine ( int x ) : void
x int The screen x-coordinate of the reversible line /// to be drawn
return void
        private void DrawReversibleLine(int x)
        {
            Point start = this.PointToScreen(new Point(x, this.PseudoClientRect.Top));

            ControlPaint.DrawReversibleLine(start, new Point(start.X, start.Y + this.PseudoClientRect.Height), this.BackColor);
        }
Table