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

GetActualHeight() public static method

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