PropertyGrid.EditSession.UpdateEditor C# (CSharp) Method

UpdateEditor() public method

public UpdateEditor ( ) : void
return void
        public void UpdateEditor()
        {
            if (!syncing) {
                syncing = true;
                currentEditor.Value = property.GetValue (obj);
                syncing = false;
            }
        }