Class RadLayout<T>
Inheritance
System.Object
RadLayout<T>
Namespace: Telerik.XamarinForms.Common
Assembly: Telerik.XamarinForms.Common.dll
Syntax
public abstract class RadLayout<T> : Layout<T> where T : View
Type Parameters
T
|
Constructors
RadLayout()
Declaration
public RadLayout()
Properties
SuppressInvalidation
Gets or sets a value that indicates whether or not measure invalidation should be suppressed. This property is taken into consideration when a child is added or removed (see ShouldInvalidateOnChildAdded and ShouldInvalidateOnChildRemoved methods).
Declaration
public bool SuppressInvalidation { get; set; }
Property Value
System.Boolean
|
Methods
LayoutChildren(Double, Double, Double, Double)
Declaration
protected override void LayoutChildren(double x, double y, double width, double height)
Parameters
System.Double
x
|
System.Double
y
|
System.Double
width
|
System.Double
height
|
OnMeasure(Double, Double)
Declaration
protected override SizeRequest OnMeasure(double widthConstraint, double heightConstraint)
Parameters
System.Double
widthConstraint
|
System.Double
heightConstraint
|
Returns
Xamarin.Forms.SizeRequest
|
ShouldInvalidateOnChildAdded(View)
Declaration
protected override bool ShouldInvalidateOnChildAdded(View child)
Parameters
Xamarin.Forms.View
child
|
Returns
System.Boolean
|
ShouldInvalidateOnChildRemoved(View)
Declaration
protected override bool ShouldInvalidateOnChildRemoved(View child)
Parameters
Xamarin.Forms.View
child
|
Returns
System.Boolean
|