Dynamo.Graph.Workspaces.WorkspaceModel.IncrementPasteOffset C# (CSharp) Метод

IncrementPasteOffset() приватный Метод

Increment the current paste offset to prevent overlapping pasted elements
private IncrementPasteOffset ( ) : void
Результат void
        internal void IncrementPasteOffset()
        {
            this.currentPasteOffset = (this.currentPasteOffset + PasteOffsetStep) % PasteOffsetMax;
        }
WorkspaceModel