23 UMG_API float GetWidthOverride()
const;
26 UMG_API bool IsWidthOverride()
const;
31 UFUNCTION(BlueprintCallable, Category =
"Layout|Size Box")
32 UMG_API void ClearWidthOverride();
35 UMG_API float GetHeightOverride()
const;
38 UMG_API bool IsHeightOverride()
const;
43 UFUNCTION(BlueprintCallable, Category =
"Layout|Size Box")
44 UMG_API void ClearHeightOverride();
47 UMG_API float GetMinDesiredWidth()
const;
50 UMG_API bool IsMinDesiredWidthOverride()
const;
55 UFUNCTION(BlueprintCallable, Category =
"Layout|Size Box")
56 UMG_API void ClearMinDesiredWidth();
59 UMG_API float GetMinDesiredHeight()
const;
62 UMG_API bool IsMinDesiredHeightOverride()
const;
67 UFUNCTION(BlueprintCallable, Category =
"Layout|Size Box")
68 UMG_API void ClearMinDesiredHeight();
71 UMG_API float GetMaxDesiredWidth()
const;
74 UMG_API bool IsMaxDesiredWidthOverride()
const;
79 UFUNCTION(BlueprintCallable, Category =
"Layout|Size Box")
80 UMG_API void ClearMaxDesiredWidth();
83 UMG_API float GetMaxDesiredHeight()
const;
86 UMG_API bool IsMaxDesiredHeightOverride()
const;
91 UFUNCTION(BlueprintCallable, Category =
"Layout|Size Box")
92 UMG_API void ClearMaxDesiredHeight();
95 UMG_API float GetMinAspectRatio()
const;
98 UMG_API bool IsMinAspectRatioOverride()
const;
102 UFUNCTION(BlueprintCallable, Category =
"Layout|Size Box")
103 UMG_API void ClearMinAspectRatio();
106 UMG_API float GetMaxAspectRatio()
const;
109 UMG_API bool IsMaxAspectRatioOverride()
const;
113 UFUNCTION(BlueprintCallable, Category =
"Layout|Size Box")
114 UMG_API void ClearMaxAspectRatio();
145 UPROPERTY(EditAnywhere, BlueprintReadWrite, Getter, Setter, Category =
"Size Box Slot", meta = (AllowPrivateAccess =
true))
149 UPROPERTY(EditAnywhere, BlueprintReadWrite, Getter, Setter, Category =
"Size Box Slot", meta = (AllowPrivateAccess =
true))
153 UPROPERTY(EditAnywhere, BlueprintReadWrite, Getter, Setter, Category =
"Size Box Slot", meta = (AllowPrivateAccess =
true))
159 UPROPERTY(EditAnywhere, BlueprintReadWrite, Getter, Setter, Category =
"Child Layout", meta = (
editcondition =
"bOverride_WidthOverride", AllowPrivateAccess =
true))
160 float WidthOverride = 0.f;
163 UPROPERTY(EditAnywhere, BlueprintReadWrite, Getter, Setter, Category =
"Child Layout", meta = (
editcondition =
"bOverride_HeightOverride", AllowPrivateAccess =
true))
164 float HeightOverride = 0.f;
167 UPROPERTY(EditAnywhere, BlueprintReadWrite, Getter, Setter, Category =
"Child Layout", meta = (
editcondition =
"bOverride_MinDesiredWidth", AllowPrivateAccess =
true))
168 float MinDesiredWidth = 0.f;
171 UPROPERTY(EditAnywhere, BlueprintReadWrite, Getter, Setter, Category =
"Child Layout", meta = (
editcondition =
"bOverride_MinDesiredHeight", AllowPrivateAccess =
true))
172 float MinDesiredHeight = 0.f;
175 UPROPERTY(EditAnywhere, BlueprintReadWrite, Getter, Setter, Category =
"Child Layout", meta = (
editcondition =
"bOverride_MaxDesiredWidth", AllowPrivateAccess =
true))
176 float MaxDesiredWidth = 0.f;
179 UPROPERTY(EditAnywhere, BlueprintReadWrite, Getter, Setter, Category =
"Child Layout", meta = (
editcondition =
"bOverride_MaxDesiredHeight", AllowPrivateAccess =
true))
180 float MaxDesiredHeight = 0.f;
183 UPROPERTY(EditAnywhere, BlueprintReadWrite, Getter, Setter, Category =
"Child Layout", meta = (
editcondition =
"bOverride_MinAspectRatio", AllowPrivateAccess =
true))
184 float MinAspectRatio = 1.f;
187 UPROPERTY(EditAnywhere, BlueprintReadWrite, Getter, Setter, Category =
"Child Layout", meta = (
editcondition =
"bOverride_MaxAspectRatio", AllowPrivateAccess =
true))
188 float MaxAspectRatio = 1.f;
191 UPROPERTY(EditAnywhere, Category =
"Child Layout", meta = (InlineEditConditionToggle, AllowPrivateAccess =
true))
192 uint8 bOverride_WidthOverride : 1;
195 UPROPERTY(EditAnywhere, Category =
"Child Layout", meta = (InlineEditConditionToggle, AllowPrivateAccess =
true))
196 uint8 bOverride_HeightOverride : 1;
199 UPROPERTY(EditAnywhere, Category =
"Child Layout", meta = (InlineEditConditionToggle, AllowPrivateAccess =
true))
200 uint8 bOverride_MinDesiredWidth : 1;
203 UPROPERTY(EditAnywhere, Category =
"Child Layout", meta = (InlineEditConditionToggle, AllowPrivateAccess =
true))
204 uint8 bOverride_MinDesiredHeight : 1;
207 UPROPERTY(EditAnywhere, Category =
"Child Layout", meta = (InlineEditConditionToggle, AllowPrivateAccess =
true))
208 uint8 bOverride_MaxDesiredWidth : 1;
211 UPROPERTY(EditAnywhere, Category =
"Child Layout", meta = (InlineEditConditionToggle, AllowPrivateAccess =
true))
212 uint8 bOverride_MaxDesiredHeight : 1;
215 UPROPERTY(EditAnywhere, Category =
"Child Layout", meta = (InlineEditConditionToggle, AllowPrivateAccess =
true))
216 uint8 bOverride_MinAspectRatio : 1;
219 UPROPERTY(EditAnywhere, Category =
"Child Layout", meta = (InlineEditConditionToggle, AllowPrivateAccess =
true))
220 uint8 bOverride_MaxAspectRatio : 1;