TagsReader.ID3V2_TextFrameGet method |
|
Remarks
Obtains contents of a specific text-based frame of the ID3V2 tag.
For further details about methods related to tags reading refer to the TagsReader object.
For details about the reading of tags see the How to read TAG information in sound files tutorial.
Syntax
[Visual Basic] control.TagsReader.ID3V2_TextFrameGet ( strFrameId as String ) as String |
[C++] BSTR control.TagsReader.ID3V2_TextFrameGet ( BSTR strFrameId ); |
Parameter |
Description |
|
|
strFrameId |
String containing the identifier of the specific frame to get. Supported identifiers for text-based frames are the following: TIT1, TIT2, TIT3, TALB, TOAL, TRCK, TPOS, TSST, TSRC, TPE1, TPE2, TPE3, TPE4, TOPE, TEXT, TOLY, TCOM, TMCL, TIPL, TENC, TBPM, TLEN, TKEY, TLAN, TCON, TFLT, TMED, TMOO, TCOP, TPRO, TPUB, TOWN, TRSN, TRSO, TOFN, TDLY, TDEN, TDOR, TDRC, TDRL, TDTG, TSSE, TSOA, TSOP, TSOT. Identifiers defined by version 2.2 of the ID3V2 tag format, which are based upon 3 characters instead of 4 characters, are supported as well. You can know if one of the frames above is available inside the ID3V2 tag by using the TagsReader.ID3V2_FrameCountGet method. |
Return value
Value |
Meaning |
|
|
Empty string |
The information is not available or an error occurred (see the LastError property for further error details) |
Valid string |
String with the content of the requested frame |