Dear everyone,
What would be the best blueprint code to select multiple items from a list view trough a check box ?
Best regards,
Dear everyone,
What would be the best blueprint code to select multiple items from a list view trough a check box ?
Best regards,
Greetings to all of you,
Is there a blueprint code that can help me select multiple items from a list view through a checkbox when I have a list view displayed?
My best regards to you,
If you want to set a blueprint property like a multiple list you can use a bit mask.
UENUM(Meta = (Bitflags, UseEnumValuesAsMaskValuesInEditor = "true"))
enum class EColorBits
{
ECB_Red UMETA(DisplayName = "Red"),
ECB_Green UMETA(DisplayName = "Green"),
ECB_Blue UMETA(DisplayName = "Blue")
};
UPROPERTY(EditAnywhere, Meta = (Bitmask, BitmaskEnum = "EColorBits"))
int32 ColorFlags;