ChatterBox.Client.Presentation.Shared.AttachedProperties.ActualSize.SetEnabled C# (CSharp) Method

SetEnabled() public static method

Sets the value of the Enabled attached property for a given dependency object.
public static SetEnabled ( DependencyObject obj, bool value ) : void
obj Windows.UI.Xaml.DependencyObject The object to which the property value /// is written.
value bool Sets the Enabled value of the specified object.
return void
        public static void SetEnabled(DependencyObject obj, bool value)
        {
            obj.SetValue(EnabledProperty, value);
        }