PropertyGrid.PropertyGrid.SetCurrentObject C# (CSharp) Метод

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

public SetCurrentObject ( object obj, object propertyProviders ) : void
obj object
propertyProviders object
Результат void
        public void SetCurrentObject(object obj, object[] propertyProviders)
        {
            if (this.currentObject == obj)
                return;
            this.currentObject = obj;
            this.propertyProviders = propertyProviders;
            UpdateTabs ();
            Populate();
        }