Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/FCanvasLineItem
Overloads
| Name |
Remarks |
Include Path |
Unreal Specifiers |
|
Draw line at the given coordinates. |
CanvasItem.h |
|
virtual void Draw
(
FCanvas* InCanvas,
const FVector2D& InPosition
)
|
Draw line at the given coordinates. |
CanvasItem.h |
|
virtual void Draw
(
FCanvas* InCanvas,
const FVector& InPosition
)
|
Draw line at the given coordinates. |
CanvasItem.h |
|
virtual void Draw
(
FCanvas* InCanvas,
const FVector2D& InStartPos,
const FVector2D& InEndPos
)
|
Draw line using the given coordinates. |
CanvasItem.h |
|
virtual void Draw
(
FCanvas* InCanvas,
float InX,
float InY
)
|
Draw line at the given coordinates. |
CanvasItem.h |
|
virtual void Draw
(
FCanvas* InCanvas,
float X,
float Y,
float Z
)
|
Draw line at the given coordinates. |
CanvasItem.h |
|
Draw(FCanvas *)
Description
Draw line at the given coordinates.
| |
|
| Name |
Draw |
| Type |
function |
| Header File |
/Engine/Source/Runtime/Engine/Public/CanvasItem.h |
| Include Path |
#include "CanvasItem.h" |
| Source |
/Engine/Source/Runtime/Engine/Private/UserInterface/CanvasItem.cpp |
virtual void Draw
(
FCanvas * InCanvas
)
Parameters
| Name |
Remarks |
| InCanvas |
Canvas on which to draw |
Draw(FCanvas *, const FVector2D &)
Description
Draw line at the given coordinates.
| |
|
| Name |
Draw |
| Type |
function |
| Header File |
/Engine/Source/Runtime/Engine/Public/CanvasItem.h |
| Include Path |
#include "CanvasItem.h" |
virtual void Draw
(
FCanvas * InCanvas,
const FVector2D & InPosition
)
Parameters
| Name |
Remarks |
| InCanvas |
Canvas on which to draw |
| InPosition |
Draw Start position |
Draw(FCanvas *, const FVector &)
Description
Draw line at the given coordinates.
| |
|
| Name |
Draw |
| Type |
function |
| Header File |
/Engine/Source/Runtime/Engine/Public/CanvasItem.h |
| Include Path |
#include "CanvasItem.h" |
virtual void Draw
(
FCanvas * InCanvas,
const FVector & InPosition
)
Parameters
| Name |
Remarks |
| InCanvas |
Canvas on which to draw |
| InPosition |
Draw position |
Draw(FCanvas *, const FVector2D &, const FVector2D &)
Description
Draw line using the given coordinates.
| |
|
| Name |
Draw |
| Type |
function |
| Header File |
/Engine/Source/Runtime/Engine/Public/CanvasItem.h |
| Include Path |
#include "CanvasItem.h" |
virtual void Draw
(
FCanvas * InCanvas,
const FVector2D & InStartPos,
const FVector2D & InEndPos
)
Parameters
| Name |
Remarks |
| InCanvas |
Canvas on which to draw |
| InStartPos |
Line start position |
| InEndPos |
Line end position |
Draw(FCanvas *, float, float)
Description
Draw line at the given coordinates.
| |
|
| Name |
Draw |
| Type |
function |
| Header File |
/Engine/Source/Runtime/Engine/Public/CanvasItem.h |
| Include Path |
#include "CanvasItem.h" |
virtual void Draw
(
FCanvas * InCanvas,
float InX,
float InY
)
Parameters
| Name |
Remarks |
| InCanvas |
Canvas on which to draw |
| X |
X Draw position |
| Y |
Y Draw position |
Draw(FCanvas *, float, float, float)
Description
Draw line at the given coordinates.
| |
|
| Name |
Draw |
| Type |
function |
| Header File |
/Engine/Source/Runtime/Engine/Public/CanvasItem.h |
| Include Path |
#include "CanvasItem.h" |
virtual void Draw
(
FCanvas * InCanvas,
float X,
float Y,
float Z
)
Parameters
| Name |
Remarks |
| InCanvas |
Canvas on which to draw |
| X |
X Draw position |
| Y |
Y Draw position |
| Z |
Z Draw position |