Dynamo.Graph.Nodes.Variable.MoveColumnBack C# (CSharp) Method

MoveColumnBack() private method

private MoveColumnBack ( int line ) : void
line int
return void
        private void MoveColumnBack(int line)
        {
            //Move the column of the variable back only if it is on the same line
            //as the fake variable
            if (Row == line)
                StartColumn -= 13;
        }