AGS.Editor.GUIController.RePopulateTreeView C# (CSharp) Метод

RePopulateTreeView() публичный Метод

public RePopulateTreeView ( IEditorComponent component, string selectedNode ) : void
component IEditorComponent
selectedNode string
Результат void
        public void RePopulateTreeView(IEditorComponent component, string selectedNode)
        {
            IRePopulatableComponent repopulatableComponent = component as IRePopulatableComponent;
            if (repopulatableComponent != null)
            {
                if (selectedNode == null)
                {
                    repopulatableComponent.RePopulateTreeView();
                }
                else
                {
                    repopulatableComponent.RePopulateTreeView(selectedNode);
                }
            }
        }

Same methods

GUIController::RePopulateTreeView ( IEditorComponent component ) : void
GUIController