ZForge.Controls.TreeViewAdv.Tree.TreeViewAdv.UpdateEditorBounds C# (CSharp) Method

UpdateEditorBounds() public method

public UpdateEditorBounds ( ) : void
return void
        public void UpdateEditorBounds()
        {
            if (_currentEditor != null)
            {
                EditorContext context = new EditorContext();
                context.Owner = _currentEditorOwner;
                context.CurrentNode = CurrentNode;
                context.Editor = _currentEditor;
                context.DrawContext = _measureContext;

                SetEditorBounds(context);
            }
        }
TreeViewAdv