How can I implement a multiline Text editor using Slate?

That does seem to do the trick for the multiline strings. It doesn’t seem editable though. Looking at the source, it’s missing the TypeChar function stuff set in SEditableText:

void SMultiLineEditableText::TypeChar( const int32 Character )
{
}

It only seems to be used in STestSuite.cpp at the moment, and isn’t editable. Am I missing some way to override the function?