Navigation
API > API/Plugins > API/Plugins/TedsQueryStack > API/Plugins/TedsQueryStack/FColumnsSearchNode
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void RegisterColumn
(
Queries::FConditions Conditions |
Implementations. | TedsColumnsSearchNode.h | |
void RegisterColumn
(
Queries::FConditions Conditions |
Register a specific variable in a column to search. | TedsColumnsSearchNode.h | |
void RegisterColumn
(
const UScriptStruct* ColumnType, |
Register a column to search. | TedsColumnsSearchNode.h | |
void RegisterColumn
(
const UScriptStruct* ColumnType, |
Register a specific property in a column to search. | TedsColumnsSearchNode.h |
RegisterColumn(Queries::FConditions)
Description
Register a column to search. All properties in the column that are marked with "Searchable" will be included.
| Name | RegisterColumn |
| Type | function |
| Header File | /Engine/Plugins/Experimental/EditorDataStorageFeatures/Source/TedsQueryStack/Public/TedsColumnsSearchNode.h |
| Include Path | #include "TedsColumnsSearchNode.h" |
template<TDataColumnType Column>
void RegisterColumn
(
Queries::FConditions Conditions
)
RegisterColumn(Queries::FConditions)
Description
Register a specific variable in a column to search. Only the provided variable will be searched if it contains a type that can be searched.
| Name | RegisterColumn |
| Type | function |
| Header File | /Engine/Plugins/Experimental/EditorDataStorageFeatures/Source/TedsQueryStack/Public/TedsColumnsSearchNode.h |
| Include Path | #include "TedsColumnsSearchNode.h" |
template<auto MemberVariable>
void RegisterColumn
(
Queries::FConditions Conditions
)
RegisterColumn(const UScriptStruct *, const Queries::FConditions &)
Description
Register a column to search. All properties in the column that are marked with "Searchable" will be included.
| Name | RegisterColumn |
| Type | function |
| Header File | /Engine/Plugins/Experimental/EditorDataStorageFeatures/Source/TedsQueryStack/Public/TedsColumnsSearchNode.h |
| Include Path | #include "TedsColumnsSearchNode.h" |
| Source | /Engine/Plugins/Experimental/EditorDataStorageFeatures/Source/TedsQueryStack/Private/TedsColumnsSearchNode.cpp |
void RegisterColumn
(
const UScriptStruct * ColumnType,
const Queries::FConditions & Conditions
)
RegisterColumn(const UScriptStruct , const FProperty , Queries::FConditions)
Description
Register a specific property in a column to search. Only the provided property will be searched if it contains a type that can be searched. It does not require to be marked with the "Searchable" metadata.
| Name | RegisterColumn |
| Type | function |
| Header File | /Engine/Plugins/Experimental/EditorDataStorageFeatures/Source/TedsQueryStack/Public/TedsColumnsSearchNode.h |
| Include Path | #include "TedsColumnsSearchNode.h" |
| Source | /Engine/Plugins/Experimental/EditorDataStorageFeatures/Source/TedsQueryStack/Private/TedsColumnsSearchNode.cpp |
void RegisterColumn
(
const UScriptStruct * ColumnType,
const FProperty * Property,
Queries::FConditions Conditions
)