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

SetActualHeight() public static method

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