Discuss this help topic in SecureBlackbox Forum

TElMessagePart.GetText

TElMessagePart     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Use this method to get text from the text part.

Declaration

[C#]
    int GetText(ref string AText);

[VB.NET]
    Function GetText(ByRef AText As String) As Integer

[Pascal]
    function GetText(var AText: TString): ELMIMERESULT;

[C++]
    int32_t GetText(sb_u16string &AText);
    int32_t GetText(std::wstring &AText);

[PHP]
    integer GetText(string &$AText)

[Java]
    int getText(TSBString AText);

Parameters

  • AText - the buffer to which data will be written.

Return value

    Returns 0 (EL_OK) on success;
    Error otherwise.

Description

    This method allows to get text from the text part.

See also:     GetData     GetPart     SetText    

Discuss this help topic in SecureBlackbox Forum