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

GetEnabled() public static method

Gets the value of the Enabled attached property for a given dependency object.
public static GetEnabled ( DependencyObject obj ) : bool
obj Windows.UI.Xaml.DependencyObject The object for which the property value /// is read.
return bool
        public static bool GetEnabled(DependencyObject obj)
        {
            return (bool)obj.GetValue(EnabledProperty);
        }