Dynamo.Controls.DynamoView.ApplyNodeViewCustomization C# (CSharp) Метод

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

private ApplyNodeViewCustomization ( object nodeView, EventArgs args ) : void
nodeView object
args System.EventArgs
Результат void
        private void ApplyNodeViewCustomization(object nodeView, EventArgs args)
        {
            var nodeViewImp = nodeView as NodeView;
            if (nodeViewImp != null)
            {
                nodeViewCustomizationLibrary.Apply(nodeViewImp);
            }
        }
DynamoView