Navigation
API > API/Editor > API/Editor/Sequencer > API/Editor/Sequencer/IKeyArea
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void GetKeyTimes
(
TArrayView< const FKeyHandle > InKeyHandles, |
Get the times of every key represented by the specified handles | IKeyArea.h | |
void GetKeyTimes
(
TArray< FFrameNumber >& OutTimes, |
Get all key times that exist within the given time range | IKeyArea.h |
GetKeyTimes(TArrayView< const FKeyHandle >, TArrayView< FFrameNumber >)
Description
Get the times of every key represented by the specified handles
| Name | GetKeyTimes |
| Type | function |
| Header File | /Engine/Source/Editor/Sequencer/Public/IKeyArea.h |
| Include Path | #include "IKeyArea.h" |
| Source | /Engine/Source/Editor/Sequencer/Private/IKeyArea.cpp |
void GetKeyTimes
(
TArrayView < const FKeyHandle > InKeyHandles,
TArrayView < FFrameNumber > OutTimes
) const
Parameters
| Name | Remarks |
|---|---|
| InKeyHandles | A handle to the key to query for |
| OutTimes | A pre-sized array view to populate with key times |
GetKeyTimes(TArray< FFrameNumber > &, const TRange< FFrameNumber > &)
Description
Get all key times that exist within the given time range
| Name | GetKeyTimes |
| Type | function |
| Header File | /Engine/Source/Editor/Sequencer/Public/IKeyArea.h |
| Include Path | #include "IKeyArea.h" |
void GetKeyTimes
(
TArray < FFrameNumber > & OutTimes,
const TRange < FFrameNumber > & WithinRange
) const
Parameters
| Name | Remarks |
|---|---|
| OutTimes | An array to populate with key times, any key times will be appended to this array |
| WithinRange | (Optional) A predicate range to search within |