/// <summary>
        /// Creates all the exposed properties with the saved graph data
        /// </summary>
        private void CreateExposedProperties()
        {
            //Clear existing properties and add correct ones
            _targetGraphView.ClearBlackBoardAndExposedProperties();

            foreach (var exposedProperty in _containerCache.ExposedProperties)
            {
                _targetGraphView.AddPropertyToBlackBoard(exposedProperty);
            }
        }