className
stringlengths 1
167
| headerPath
stringlengths 14
166
| description
stringlengths 0
1.62k
| module
stringlengths 0
76
| code
stringlengths 0
11.4k
| variables
listlengths 0
395
|
---|---|---|---|---|---|
FMargin::GetTotalSpaceAlong | /Engine/Source/Runtime/SlateCore/Public/Layout/Margin.h | SlateCore | template<> float GetTotalSpaceAlong() const | [] |
|
FMargin::GetTotalSpaceAlong | /Engine/Source/Runtime/SlateCore/Public/Layout/Margin.h | SlateCore | template<> float GetTotalSpaceAlong() const | [] |
|
FMargin::operator== | /Engine/Source/Runtime/SlateCore/Public/Layout/Margin.h | Compares this margin with another for equality.
true if the two margins are equal, false otherwise. | SlateCore | bool operator== ( const [FMargin](API\Runtime\SlateCore\Layout\FMargin) & Other ) const | [] |
FMargin::operator!= | /Engine/Source/Runtime/SlateCore/Public/Layout/Margin.h | Compares this margin with another for inequality.
true if the two margins are not equal, false otherwise. | SlateCore | bool operator!= ( const [FMargin](API\Runtime\SlateCore\Layout\FMargin) & Other ) const | [] |
FMargin::operator* | /Engine/Source/Runtime/SlateCore/Public/Layout/Margin.h | Multiply the margin by a scalar.
AnFMarginwhere each value is scaled by Scale. | SlateCore | [FMargin](API\Runtime\SlateCore\Layout\FMargin) operator* ( float Scale ) const | [] |
FMargin::operator* | /Engine/Source/Runtime/SlateCore/Public/Layout/Margin.h | Multiply the margin by another margin functioning as the scale.
AnFMarginwhere each value is scaled by Scale. | SlateCore | [FMargin](API\Runtime\SlateCore\Layout\FMargin) operator* ( const [FMargin](API\Runtime\SlateCore\Layout\FMargin) & InScale ) const | [] |
FMargin::operator- | /Engine/Source/Runtime/SlateCore/Public/Layout/Margin.h | Subtracts another margin from this margin.
A margin that represents this margin minues the other margin. | SlateCore | [FMargin](API\Runtime\SlateCore\Layout\FMargin) operator- ( const [FMargin](API\Runtime\SlateCore\Layout\FMargin) & Other ) const | [] |
FMargin::FMargin | /Engine/Source/Runtime/SlateCore/Public/Layout/Margin.h | The default margin size is zero on all four sides.. | SlateCore | FMargin() | [] |
FMargin::FMargin | /Engine/Source/Runtime/SlateCore/Public/Layout/Margin.h | Construct a Margin with uniform space on all sides | SlateCore | FMargin ( float UniformMargin ) | [] |
FMargin::operator+ | /Engine/Source/Runtime/SlateCore/Public/Layout/Margin.h | Adds another margin to this margin.
A margin that represents this margin plus the other margin. | SlateCore | [FMargin](API\Runtime\SlateCore\Layout\FMargin) operator+ ( const [FMargin](API\Runtime\SlateCore\Layout\FMargin) & InDelta ) const | [] |
FMargin::FMargin | /Engine/Source/Runtime/SlateCore/Public/Layout/Margin.h | Construct a Margin where Horizontal describes Left and Right spacing while Vertical describes Top and Bottom spacing | SlateCore | FMargin ( const FVector2f InVector ) | [] |
FMargin::FMargin | /Engine/Source/Runtime/SlateCore/Public/Layout/Margin.h | Construct a Margin where the margins are coming from a FVector4 | SlateCore | FMargin ( const FVector4f InVector ) | [] |
FMargin::FMargin | /Engine/Source/Runtime/SlateCore/Public/Layout/Margin.h | Construct a Margin where the margins are coming from a FVector4 | SlateCore | FMargin ( const FVector4d InVector ) | [] |
FMargin::FMargin | /Engine/Source/Runtime/SlateCore/Public/Layout/Margin.h | Construct a Margin where Horizontal describes Left and Right spacing while Vertical describes Top and Bottom spacing | SlateCore | FMargin ( float Horizontal, float Vertical ) | [] |
FMargin::FMargin | /Engine/Source/Runtime/SlateCore/Public/Layout/Margin.h | Construct a Margin where the spacing on each side is individually specified. | SlateCore | FMargin ( double InLeft, double InTop, double InRight, double InBottom ) | [] |
FMargin::FMargin | /Engine/Source/Runtime/SlateCore/Public/Layout/Margin.h | Construct a Margin where Horizontal describes Left and Right spacing while Vertical describes Top and Bottom spacing | SlateCore | FMargin ( const FVector2d InVector ) | [] |
FMargin | /Engine/Source/Runtime/SlateCore/Public/Layout/Margin.h | Describes the space around a Widget. | SlateCore | struct FMargin | [
{
"type": "float",
"name": "Bottom",
"description": "Holds the margin to the bottom."
},
{
"type": "float",
"name": "Left",
"description": "Holds the margin to the left."
},
{
"type": "float",
"name": "Right",
"description": "Holds the margin to the right."
},
{
"type": "float",
"name": "Top",
"description": "Holds the margin to the top."
}
] |
FNoChildren::GetChildAt | /Engine/Source/Runtime/SlateCore/Public/Layout/Children.h | pointer to the Widget at the specifiedIndex. | SlateCore | virtual [TSharedRef](API\Runtime\Core\Templates\TSharedRef)< [SWidget](API\Runtime\SlateCore\Widgets\SWidget) > GetChildAt ( int32 Index ) | [] |
FNoChildren::GetChildAt | /Engine/Source/Runtime/SlateCore/Public/Layout/Children.h | const pointer to the Widget at the specifiedIndex. | SlateCore | virtual [TSharedRef](API\Runtime\Core\Templates\TSharedRef)< const [SWidget](API\Runtime\SlateCore\Widgets\SWidget) > GetChildAt ( int32 Index ) const | [] |
NoChildrenInstance | /Engine/Source/Runtime/SlateCore/Public/Layout/Children.h | SlateCore | static [FNoChildren](API\Runtime\SlateCore\Layout\FNoChildren) NoChildrenInstance; | [] |
|
FNoChildren::Num | /Engine/Source/Runtime/SlateCore/Public/Layout/Children.h | the number of children | SlateCore | virtual int32 Num() const | [] |
FNoChildren::FNoChildren | /Engine/Source/Runtime/SlateCore/Public/Layout/Children.h | Deprecated*FNoChildrentake a valid reference to aSWidget | SlateCore | FNoChildren() | [] |
FNoChildren::FNoChildren | /Engine/Source/Runtime/SlateCore/Public/Layout/Children.h | SlateCore | FNoChildren ( [SWidget](API\Runtime\SlateCore\Widgets\SWidget) * InOwner ) | [] |
|
FNoChildren::FNoChildren | /Engine/Source/Runtime/SlateCore/Public/Layout/Children.h | SlateCore | FNoChildren ( [SWidget](API\Runtime\SlateCore\Widgets\SWidget) * InOwner, [FName](API\Runtime\Core\UObject\FName) InName ) | [] |
|
FNoChildren | /Engine/Source/Runtime/SlateCore/Public/Layout/Children.h | Widgets with no Children can return an instance ofFNoChildren. For convenience a shared instance FNoChildren::NoChildrenInstance can be used. | SlateCore | class FNoChildren : public [FChildren](API\Runtime\SlateCore\Layout\FChildren) | [] |
FPaintGeometry::AppendTransform | /Engine/Source/Runtime/SlateCore/Public/Layout/PaintGeometry.h | Special case method to append a layout transform to a paint geometry. This is used in cases where theFGeometrywas arranged in desktop space and we need to undo the root desktop translation to get into window space. If you find yourself wanting to use this function, ask someone if there's a better way. | SlateCore | void AppendTransform ( const [FSlateLayoutTransform](API\Runtime\SlateCore\Rendering\FSlateLayoutTransform) & LayoutTransform ) | [] |
FPaintGeometry::CommitTransformsIfUsingLegacyConstructor | /Engine/Source/Runtime/SlateCore/Public/Layout/PaintGeometry.h | Support mutable geometries constructed in window space, and possibly mutated later, as all legacy members are public. In these cases we defer creating of the RenderTransform and LocalSize until rendering time to ensure that all member changes have finished. WARNING: Legacy usage does NOT support render transforms! | SlateCore | void CommitTransformsIfUsingLegacyConstructor() const | [] |
FPaintGeometry::GetLocalSize | /Engine/Source/Runtime/SlateCore/Public/Layout/PaintGeometry.h | Get the Size of the geometry in local space. Must callCommitTransformsIfUsingLegacyConstructor()first if legacy ctor is used. | SlateCore | [UE::Slate::FDeprecateVector2DResult](API\Runtime\SlateCore\Types\FDeprecateVector2DResult) GetLocalSize() const | [] |
FPaintGeometry::GetAccumulatedRenderTransform | /Engine/Source/Runtime/SlateCore/Public/Layout/PaintGeometry.h | Access the final render transform. Must callCommitTransformsIfUsingLegacyConstructor()first if legacy ctor is used. | SlateCore | const FSlateRenderTransform & GetAccumulatedRenderTransform() const | [] |
FPaintGeometry::HasRenderTransform | /Engine/Source/Runtime/SlateCore/Public/Layout/PaintGeometry.h | SlateCore | bool HasRenderTransform() const | [] |
|
FPaintGeometry::FPaintGeometry | /Engine/Source/Runtime/SlateCore/Public/Layout/PaintGeometry.h | Default ctor. | SlateCore | FPaintGeometry() | [] |
FPaintGeometry::FPaintGeometry | /Engine/Source/Runtime/SlateCore/Public/Layout/PaintGeometry.h | !!! DEPRECATED!!! This is legacy and should be removed! | SlateCore | FPaintGeometry ( [UE::Slate::FDeprecateVector2DParameter](API\Runtime\SlateCore\Types\FDeprecateVector2DParameter) InDrawPosition, [UE::Slate::FDeprecateVector2DParameter](API\Runtime\SlateCore\Types\FDeprecateVector2DParameter) InDrawSize, float InDrawScale ) | [] |
FPaintGeometry::SetRenderTransform | /Engine/Source/Runtime/SlateCore/Public/Layout/PaintGeometry.h | Special case method to replace the render transform on a paint geometry. | SlateCore | void SetRenderTransform ( const FSlateRenderTransform & RenderTransform ) | [] |
FPaintGeometry::FPaintGeometry | /Engine/Source/Runtime/SlateCore/Public/Layout/PaintGeometry.h | Creates and initializes a new instance. | SlateCore | FPaintGeometry ( const [FSlateLayoutTransform](API\Runtime\SlateCore\Rendering\FSlateLayoutTransform) & InAccumulatedLayoutTransform, const FSlateRenderTransform & InAccumulatedRenderTransform, const [UE::Slate::FDeprecateVector2DParameter](API\Runtime\SlateCore\Types\FDeprecateVector2DParameter) & InLocalSize, bool bInHasRenderTransform ) | [] |
FSingleWidgetChildrenWithBasicLayoutSlot | /Engine/Source/Runtime/SlateCore/Public/Layout/Children.h | SlateCore | class FSingleWidgetChildrenWithBasicLayoutSlot : public [TSingleWidgetChildrenWithBasicLayoutSlot<>](API\Runtime\SlateCore\Layout\TSingleWidgetChildrenWithBasicLa-) | [] |
|
FPaintGeometry | /Engine/Source/Runtime/SlateCore/Public/Layout/PaintGeometry.h | The DrawScale is only applied to the internal aspects of the draw primitives. e.g. Line thickness, 3x3 grid margins, etc. | SlateCore | struct FPaintGeometry | [
{
"type": "FVector2f",
"name": "DrawPosition",
"description": "!!! DEPRECATED!!! Drawing should only happen in local space to ensure render transforms work."
},
{
"type": "float",
"name": "DrawScale",
"description": "!!! DEPRECATED!!! Drawing should only happen in local space to ensure render transforms work."
}
] |
FSingleWidgetChildrenWithSlot | /Engine/Source/Runtime/SlateCore/Public/Layout/Children.h | AFChildrenthat has only one child. | SlateCore | class FSingleWidgetChildrenWithSlot : public [TSingleWidgetChildrenWithSlot< FSingleWidgetChildrenWithSlot >](API\Runtime\SlateCore\Layout\TSingleWidgetChildrenWithSlot) | [] |
FSlateCachedClipState | /Engine/Source/Runtime/SlateCore/Public/Layout/Clipping.h | SlateCore | class FSlateCachedClipState | [
{
"type": "TSharedRef<FSl...",
"name": "ClippingState",
"description": ""
}
] |
|
FSlateCachedClipState::FSlateCachedClipState | /Engine/Source/Runtime/SlateCore/Public/Layout/Clipping.h | SlateCore | FSlateCachedClipState ( const [FSlateClippingState](API\Runtime\SlateCore\Layout\FSlateClippingState) & InState ) | [] |
|
FSlateClippingManager::GetActiveClippingState | /Engine/Source/Runtime/SlateCore/Public/Layout/Clipping.h | SlateCore | [TOptional](API\Runtime\Core\IO\TOptional)< [FSlateClippingState](API\Runtime\SlateCore\Layout\FSlateClippingState) > GetActiveClippingState() const | [] |
|
FSlateClippingManager::GetClippingIndex | /Engine/Source/Runtime/SlateCore/Public/Layout/Clipping.h | SlateCore | int32 GetClippingIndex() const | [] |
|
FSlateClippingManager::GetClippingStack | /Engine/Source/Runtime/SlateCore/Public/Layout/Clipping.h | SlateCore | const [TArray](API\Runtime\Core\Containers\TArray)< int32 > & GetClippingStack() const | [] |
|
FSlateClippingManager::GetClippingIndexAtStackIndex | /Engine/Source/Runtime/SlateCore/Public/Layout/Clipping.h | SlateCore | int32 GetClippingIndexAtStackIndex ( int32 StackIndex ) const | [] |
|
FSlateClippingManager::GetClippingStates | /Engine/Source/Runtime/SlateCore/Public/Layout/Clipping.h | SlateCore | const [TArray](API\Runtime\Core\Containers\TArray)< [FSlateClippingState](API\Runtime\SlateCore\Layout\FSlateClippingState) > & GetClippingStates() const | [] |
|
FSlateClippingManager::GetStackDepth | /Engine/Source/Runtime/SlateCore/Public/Layout/Clipping.h | SlateCore | int32 GetStackDepth() const | [] |
|
FSlateClippingManager::GetPreviousClippingState | /Engine/Source/Runtime/SlateCore/Public/Layout/Clipping.h | SlateCore | const [FSlateClippingState](API\Runtime\SlateCore\Layout\FSlateClippingState) * GetPreviousClippingState ( bool bWillIntersectWithParent ) const | [] |
|
FSlateClippingManager::PopClip | /Engine/Source/Runtime/SlateCore/Public/Layout/Clipping.h | SlateCore | void PopClip() | [] |
|
FSlateClippingManager::PushClip | /Engine/Source/Runtime/SlateCore/Public/Layout/Clipping.h | SlateCore | int32 PushClip ( const [FSlateClippingZone](API\Runtime\SlateCore\Layout\FSlateClippingZone) & InClippingZone ) | [] |
|
FSlateClippingManager::PopToStackIndex | /Engine/Source/Runtime/SlateCore/Public/Layout/Clipping.h | SlateCore | void PopToStackIndex ( int32 Index ) | [] |
|
FSlateClippingManager::PushClippingState | /Engine/Source/Runtime/SlateCore/Public/Layout/Clipping.h | SlateCore | int32 PushClippingState ( const [FSlateClippingState](API\Runtime\SlateCore\Layout\FSlateClippingState) & InClipState ) | [] |
|
FSlateClippingManager::ResetClippingState | /Engine/Source/Runtime/SlateCore/Public/Layout/Clipping.h | SlateCore | void ResetClippingState() | [] |
|
FSlateClippingManager::FSlateClippingManager | /Engine/Source/Runtime/SlateCore/Public/Layout/Clipping.h | SlateCore | FSlateClippingManager() | [] |
|
FSlateClippingState::GetAlwaysClip | /Engine/Source/Runtime/SlateCore/Public/Layout/Clipping.h | SlateCore | bool GetAlwaysClip() const | [] |
|
FSlateClippingManager | /Engine/Source/Runtime/SlateCore/Public/Layout/Clipping.h | The clipping manager maintain the running clip state. This is used for both maintain and for hit testing. | SlateCore | class FSlateClippingManager | [] |
FSlateClippingState::GetClippingMethod | /Engine/Source/Runtime/SlateCore/Public/Layout/Clipping.h | Gets the type of clipping that is required by this clipping state. The simpler clipping is scissor clipping, but that's only possible if the clipping rect is axis aligned. | SlateCore | EClippingMethod GetClippingMethod() const | [] |
FSlateClippingState::GetShouldIntersectParent | /Engine/Source/Runtime/SlateCore/Public/Layout/Clipping.h | SlateCore | bool GetShouldIntersectParent() const | [] |
|
FSlateClippingState::HasZeroArea | /Engine/Source/Runtime/SlateCore/Public/Layout/Clipping.h | Indicates if this clipping state has a zero size, aka is empty. We only possibly report true for scissor clipping zones. | SlateCore | bool HasZeroArea() const | [] |
FSlateClippingState::IsPointInside | /Engine/Source/Runtime/SlateCore/Public/Layout/Clipping.h | Is a point inside the clipping state? | SlateCore | bool IsPointInside ( const [UE::Slate::FDeprecateVector2DParameter](API\Runtime\SlateCore\Types\FDeprecateVector2DParameter) & Point ) const | [] |
FSlateClippingState::operator== | /Engine/Source/Runtime/SlateCore/Public/Layout/Clipping.h | SlateCore | bool operator== ( const [FSlateClippingState](API\Runtime\SlateCore\Layout\FSlateClippingState) & Other ) const | [] |
|
FSlateClippingState::SetDebuggingStateIndex | /Engine/Source/Runtime/SlateCore/Public/Layout/Clipping.h | Set the state index that this clipping state originated from. We just do this for debugging purposes. | SlateCore | void SetDebuggingStateIndex ( int32 InStateIndex ) const | [] |
FSlateClippingState | /Engine/Source/Runtime/SlateCore/Public/Layout/Clipping.h | Captures everything about a single draw calls clipping state. | SlateCore | class FSlateClippingState | [
{
"type": "TOptional<FSla...",
"name": "ScissorRect",
"description": "If this is an axis aligned clipping state, this will be filled."
},
{
"type": "TArray<FSlateC...",
"name": "StencilQuads",
"description": "If this is a more expensive stencil clipping zone, this will be filled."
}
] |
FSlateClippingZone::ComputeHash | /Engine/Source/Runtime/SlateCore/Public/Layout/Clipping.h | SlateCore | uint32 ComputeHash() const | [] |
|
FSlateClippingState::FSlateClippingState | /Engine/Source/Runtime/SlateCore/Public/Layout/Clipping.h | SlateCore | FSlateClippingState ( EClippingFlags InFlags ) | [] |
|
FSlateClippingZone::GetAlwaysClip | /Engine/Source/Runtime/SlateCore/Public/Layout/Clipping.h | SlateCore | bool GetAlwaysClip() const | [] |
|
FSlateClippingZone::ConvertRelativeToAbsolute | /Engine/Source/Runtime/SlateCore/Public/Layout/Clipping.h | SlateCore | [FSlateClippingZone](API\Runtime\SlateCore\Layout\FSlateClippingZone) ConvertRelativeToAbsolute ( const [UE::Slate::FDeprecateVector2DParameter](API\Runtime\SlateCore\Types\FDeprecateVector2DParameter) & WindowOffset ) const | [] |
|
FSlateClippingZone::GetBoundingBox | /Engine/Source/Runtime/SlateCore/Public/Layout/Clipping.h | Gets the bounding box of the points making up this clipping zone. | SlateCore | [FSlateRect](API\Runtime\SlateCore\Layout\FSlateRect) GetBoundingBox() const | [] |
FSlateClippingZone::HasZeroArea | /Engine/Source/Runtime/SlateCore/Public/Layout/Clipping.h | Indicates if this clipping state has a zero size, aka is empty. We only possibly report true for scissor clipping zones. | SlateCore | bool HasZeroArea() const | [] |
FSlateClippingZone::GetShouldIntersectParent | /Engine/Source/Runtime/SlateCore/Public/Layout/Clipping.h | SlateCore | bool GetShouldIntersectParent() const | [] |
|
FSlateClippingZone::IsAxisAligned | /Engine/Source/Runtime/SlateCore/Public/Layout/Clipping.h | Is the clipping rect axis aligned? If it is, we can use a much cheaper clipping solution. | SlateCore | bool IsAxisAligned() const | [] |
FSlateClippingZone::operator== | /Engine/Source/Runtime/SlateCore/Public/Layout/Clipping.h | SlateCore | bool operator== ( const [FSlateClippingZone](API\Runtime\SlateCore\Layout\FSlateClippingZone) & Other ) const | [] |
|
FSlateClippingZone::Intersect | /Engine/Source/Runtime/SlateCore/Public/Layout/Clipping.h | Intersects two clipping zones and returns the new clipping zone that would need to be used. This can only be called between two axis aligned clipping zones. | SlateCore | [FSlateClippingZone](API\Runtime\SlateCore\Layout\FSlateClippingZone) Intersect ( const [FSlateClippingZone](API\Runtime\SlateCore\Layout\FSlateClippingZone) & Other ) const | [] |
FSlateClippingZone::IsPointInside | /Engine/Source/Runtime/SlateCore/Public/Layout/Clipping.h | Is a point inside the clipping zone? | SlateCore | bool IsPointInside ( const [UE::Slate::FDeprecateVector2DParameter](API\Runtime\SlateCore\Types\FDeprecateVector2DParameter) & Point ) const | [] |
FSlateClippingZone::SetAlwaysClip | /Engine/Source/Runtime/SlateCore/Public/Layout/Clipping.h | SlateCore | void SetAlwaysClip ( bool bValue ) | [] |
|
FSlateClippingZone::SetShouldIntersectParent | /Engine/Source/Runtime/SlateCore/Public/Layout/Clipping.h | SlateCore | void SetShouldIntersectParent ( bool bValue ) | [] |
|
FSlateClippingZone::FSlateClippingZone | /Engine/Source/Runtime/SlateCore/Public/Layout/Clipping.h | SlateCore | FSlateClippingZone() | [] |
|
FSlateClippingZone::FSlateClippingZone | /Engine/Source/Runtime/SlateCore/Public/Layout/Clipping.h | SlateCore | FSlateClippingZone ( const [FShortRect](API\Runtime\SlateCore\Rendering\FShortRect) & AxisAlignedRect ) | [] |
|
FSlateClippingZone::FSlateClippingZone | /Engine/Source/Runtime/SlateCore/Public/Layout/Clipping.h | SlateCore | FSlateClippingZone ( const [FSlateRect](API\Runtime\SlateCore\Layout\FSlateRect) & AxisAlignedRect ) | [] |
|
FSlateClippingZone::FSlateClippingZone | /Engine/Source/Runtime/SlateCore/Public/Layout/Clipping.h | SlateCore | FSlateClippingZone ( const [FGeometry](API\Runtime\SlateCore\Layout\FGeometry) & BoundingGeometry ) | [] |
|
FSlateClippingZone::FSlateClippingZone | /Engine/Source/Runtime/SlateCore/Public/Layout/Clipping.h | SlateCore | FSlateClippingZone ( const [UE::Slate::FDeprecateVector2DParameter](API\Runtime\SlateCore\Types\FDeprecateVector2DParameter) & InTopLeft, const [UE::Slate::FDeprecateVector2DParameter](API\Runtime\SlateCore\Types\FDeprecateVector2DParameter) & InTopRight, const [UE::Slate::FDeprecateVector2DParameter](API\Runtime\SlateCore\Types\FDeprecateVector2DParameter) & InBottomLeft, const [UE::Slate::FDeprecateVector2DParameter](API\Runtime\SlateCore\Types\FDeprecateVector2DParameter) & InBottomRight ) | [] |
|
FSlateClippingZone::FSlateClippingZone | /Engine/Source/Runtime/SlateCore/Public/Layout/Clipping.h | SlateCore | FSlateClippingZone ( const [FPaintGeometry](API\Runtime\SlateCore\Layout\FPaintGeometry) & PaintingGeometry ) | [] |
|
FSlateClippingZone | /Engine/Source/Runtime/SlateCore/Public/Layout/Clipping.h | The Clipping Zone represents some arbitrary plane segment that can be used to clip the geometry in Slate. | SlateCore | class FSlateClippingZone | [
{
"type": "FVector2f",
"name": "BottomLeft",
"description": ""
},
{
"type": "FVector2f",
"name": "BottomRight",
"description": ""
},
{
"type": "FVector2f",
"name": "TopLeft",
"description": ""
},
{
"type": "FVector2f",
"name": "TopRight",
"description": ""
}
] |
FSlateRect::DoRectanglesIntersect | /Engine/Source/Runtime/SlateCore/Public/Layout/SlateRect.h | Do rectangles A and B intersect? | SlateCore | static bool DoRectanglesIntersect ( const [FSlateRect](API\Runtime\SlateCore\Layout\FSlateRect) & A, const [FSlateRect](API\Runtime\SlateCore\Layout\FSlateRect) & B ) | [] |
FSlateRect::ContainsPoint | /Engine/Source/Runtime/SlateCore/Public/Layout/SlateRect.h | Returns whether or not a point is inside the rectangle
True if the point is inside the rectangle | SlateCore | bool ContainsPoint ( const [UE::Slate::FDeprecateVector2DParameter](API\Runtime\SlateCore\Types\FDeprecateVector2DParameter) & Point ) const | [] |
FSlateRect::Expand | /Engine/Source/Runtime/SlateCore/Public/Layout/SlateRect.h | Returns the rect that encompasses both rectangles
Rectangle that is big enough to fit both rectangles | SlateCore | [FSlateRect](API\Runtime\SlateCore\Layout\FSlateRect) Expand ( const [FSlateRect](API\Runtime\SlateCore\Layout\FSlateRect) & Other ) const | [] |
FSlateRect::ExtendBy | /Engine/Source/Runtime/SlateCore/Public/Layout/SlateRect.h | Return a rectangle that is extended on each side by the amount specified in each margin.
An extended rectangle. | SlateCore | [FSlateRect](API\Runtime\SlateCore\Layout\FSlateRect) ExtendBy ( const [FMargin](API\Runtime\SlateCore\Layout\FMargin) & ExtendAmount ) const | [] |
FSlateRect::FromPointAndExtent | /Engine/Source/Runtime/SlateCore/Public/Layout/SlateRect.h | Creates a rect from a top left point and extent. Provided as a factory function to not conflict with the TopLeft + BottomRight ctor. | SlateCore | static [FSlateRect](API\Runtime\SlateCore\Layout\FSlateRect) FromPointAndExtent ( const [UE::Slate::FDeprecateVector2DParameter](API\Runtime\SlateCore\Types\FDeprecateVector2DParameter) & TopLeft, const [UE::Slate::FDeprecateVector2DParameter](API\Runtime\SlateCore\Types\FDeprecateVector2DParameter) & Size ) | [] |
FSlateRect::GetArea | /Engine/Source/Runtime/SlateCore/Public/Layout/SlateRect.h | the area of the rectangle | SlateCore | float GetArea() const | [] |
FSlateRect::GetBottomLeft | /Engine/Source/Runtime/SlateCore/Public/Layout/SlateRect.h | Returns the bottom-left position of the rectangle
The bottom-left position. | SlateCore | [UE::Slate::FDeprecateVector2DResult](API\Runtime\SlateCore\Types\FDeprecateVector2DResult) GetBottomLeft() const | [] |
FSlateRect::GetBottomLeft2f | /Engine/Source/Runtime/SlateCore/Public/Layout/SlateRect.h | SlateCore | FVector2f GetBottomLeft2f() const | [] |
|
FSlateRect::GetBottomRight | /Engine/Source/Runtime/SlateCore/Public/Layout/SlateRect.h | Returns the bottom-right position of the rectangle
The bottom-right position. | SlateCore | [UE::Slate::FDeprecateVector2DResult](API\Runtime\SlateCore\Types\FDeprecateVector2DResult) GetBottomRight() const | [] |
FSlateRect::GetBottomRight2f | /Engine/Source/Runtime/SlateCore/Public/Layout/SlateRect.h | SlateCore | FVector2f GetBottomRight2f() const | [] |
|
FSlateRect::GetCenter | /Engine/Source/Runtime/SlateCore/Public/Layout/SlateRect.h | Returns the center of the rectangle
The center point. | SlateCore | [UE::Slate::FDeprecateVector2DResult](API\Runtime\SlateCore\Types\FDeprecateVector2DResult) GetCenter() const | [] |
FSlateRect::GetCenter2f | /Engine/Source/Runtime/SlateCore/Public/Layout/SlateRect.h | SlateCore | FVector2f GetCenter2f() const | [] |
|
FSlateRect::GetSize | /Engine/Source/Runtime/SlateCore/Public/Layout/SlateRect.h | Returns the size of the rectangle in each dimension.
The size as a vector. | SlateCore | [UE::Slate::FDeprecateVector2DResult](API\Runtime\SlateCore\Types\FDeprecateVector2DResult) GetSize() const | [] |
FSlateRect::GetSize2f | /Engine/Source/Runtime/SlateCore/Public/Layout/SlateRect.h | SlateCore | FVector2f GetSize2f() const | [] |
|
FSlateRect::GetTopLeft | /Engine/Source/Runtime/SlateCore/Public/Layout/SlateRect.h | Returns the top-left position of the rectangle
The top-left position. | SlateCore | [UE::Slate::FDeprecateVector2DResult](API\Runtime\SlateCore\Types\FDeprecateVector2DResult) GetTopLeft() const | [] |
FSlateRect::GetTopLeft2f | /Engine/Source/Runtime/SlateCore/Public/Layout/SlateRect.h | SlateCore | FVector2f GetTopLeft2f() const | [] |
|
FSlateRect::GetTopRight2f | /Engine/Source/Runtime/SlateCore/Public/Layout/SlateRect.h | SlateCore | FVector2f GetTopRight2f() const | [] |
|
FSlateRect::InitFromString | /Engine/Source/Runtime/SlateCore/Public/Layout/SlateRect.h | Returns a string of containing the coordinates of the rect
True if initialized successfully | SlateCore | bool InitFromString ( const [FString](API\Runtime\Core\Containers\FString) & InSourceString ) | [] |
FSlateRect::InsetBy | /Engine/Source/Runtime/SlateCore/Public/Layout/SlateRect.h | Return a rectangle that is contracted on each side by the amount specified in each margin.
An inset rectangle. | SlateCore | [FSlateRect](API\Runtime\SlateCore\Layout\FSlateRect) InsetBy ( const struct [FMargin](API\Runtime\SlateCore\Layout\FMargin) & InsetAmount ) const | [] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.