In Xamarin.Forms I want to be able to set the exact height for a control whose height is initially determined using VerticalLayoutOptions only (FillAndExpand in this case) and then, at a later point, reset the height of the control back to be automatically determined.
In normal XAML it is possible to do this via double.Nan but performing the following causes an exception to be thrown.:
control.HeightRequest = double.NaN
How do you set the HeightRequest back to be self-determined?