FocusCustomNodeWorkspace() private method

Change the currently visible workspace to a custom node's workspace
private FocusCustomNodeWorkspace ( System.Guid symbol ) : void
symbol System.Guid The function definition for the custom node workspace to be viewed
return void
示例#1
0
        private void ViewCustomNodeWorkspace(object parameter)
        {
            var f = (nodeLogic as Function);

            if (f != null)
            {
                DynamoViewModel.FocusCustomNodeWorkspace(f.Definition);
            }
        }