Navigation
API > API/Runtime > API/Runtime/SlateCore > API/Runtime/SlateCore/FMargin
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
| Multiply the margin by a scalar. | Layout/Margin.h | ||
| Multiply the margin by another margin functioning as the scale. | Layout/Margin.h |
operator*(float)
Description
Multiply the margin by a scalar.
| Name | operator* |
| Type | function |
| Header File | /Engine/Source/Runtime/SlateCore/Public/Layout/Margin.h |
| Include Path | #include "Layout/Margin.h" |
FMargin operator*
(
float Scale
) const
An FMargin where each value is scaled by Scale.
Parameters
| Name | Remarks |
|---|---|
| Scale | How much to scale the margin. |
operator*(const FMargin &)
Description
Multiply the margin by another margin functioning as the scale.
| Name | operator* |
| Type | function |
| Header File | /Engine/Source/Runtime/SlateCore/Public/Layout/Margin.h |
| Include Path | #include "Layout/Margin.h" |
FMargin operator*
(
const FMargin & InScale
) const
An FMargin where each value is scaled by Scale.
Parameters
| Name | Remarks |
|---|---|
| InScale | How much to scale the margin. |