Dynamo.Graph.Nodes.Variable.MoveColumnBack C# (CSharp) Méthode

MoveColumnBack() private méthode

private MoveColumnBack ( int line ) : void
line int
Résultat 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;
        }