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

GetActualWidth() public static method

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