AbsoluteLayout.GetLayoutFlags(BindableObject) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the layout flags that were specified when bindable
was added to an AbsoluteLayout.
public static Xamarin.Forms.AbsoluteLayoutFlags GetLayoutFlags (Xamarin.Forms.BindableObject bindable);
static member GetLayoutFlags : Xamarin.Forms.BindableObject -> Xamarin.Forms.AbsoluteLayoutFlags
Parameters
- bindable
- BindableObject
A visual element.
Returns
The layout flags of the object.
Remarks
This method supports the AbsoluteLayout.LayoutFlags
XAML attached property. In XAML, Application developers can specify the following AbsoluteLayoutFlags enumeration value names for the value of this property on the children of a AbsoluteLayout:
-
All
: -
None
: -
HeightProportional
: -
WidthProportional
: -
SizeProportional
: -
XProportional
: -
YProportional
: -
PositionProportional
:
Application developers can combine any of the above values by supplying a comma-separated list.