Template for UClass(BlueprintType)

Hello, I wonder if using template for UCLASS which is BlueprintType is possible. When I tried to compile it, it gave me header errors

template<typename T> //here
UCLASS(BlueprintType) //here
class TESTTURNBASE_API UMultiArrayRow : public UObject
{
	public:
		GENERATED_BODY()

		UPROPERTY(EditAnywhere, BlueprintReadWrite, Meta = (DeterminesOutputType = "Rows"), Category = MultiArray)
		TArray<T> Columns; 
};

Hi Andi,

No, UCLASS templates are not supported.

Steve

I see, thanks!

Then how can I use template class?

They’re not supported.