Function::Memo

MemoSetGlobal()
MemoSetGlobal("MyVariableName",Memo)
MemoSetGlobal("MyLog",LogMemo)

To copy the content of a local memo field into a global named variable where it can be retrieved later with MemoGetGlobal()
Memos can't be queried the normal way due the the size, so all manipulation and moving around have to be done via Memo Objects.

MemoSetGlobal() will set the content of a local Memo into a Global Memory variable (named) and MemoGetGloba() will retrieve it and insert it into a local Memo fields object.

Parameters

GlobalVariableName: Text

The name of the global variable.

SourceMemo:Memo

The memo from where we will copy the content and store in the global variable

Returns/Result

Nothing.