This version of Unity is unsupported.

LayoutUtility.GetLayoutProperty

Declaration

public static float GetLayoutProperty(RectTransform rect, Func<ILayoutElement,float> property, float defaultValue);

Declaration

public static float GetLayoutProperty(RectTransform rect, Func<ILayoutElement,float> property, float defaultValue, out UI.ILayoutElement source);

Parameters

rect The RectTransform of the layout element to get a property for.
property The property to calculate.
defaultValue The default value to use if no component on the layout element supplies the given property.
source Optional out parameter to get the component that supplied the calculated value.

Returns

float The calculated value of the layout property.

Description

Gets a calculated layout property for the layout element with the given RectTransform.