TagsEditor.ID3V2_TextFrameGet method |
|
Remarks
Obtains contents of a specific text-based frame of the ID3V2 tag. Current contents can be modified through the TagsEditor.ID3V2_TextFrameSet method.
For further details about methods related to tags editing refer to the TagsEditorMan class.
For details about the editing of tags see the How to edit tag info in sound files tutorial.
Syntax
[Visual Basic] Public Function ID3V2_TextFrameGet ( strFrameId as string ) as String |
[C#] public string ID3V2_TextFrameGet ( string strFrameId ); |
[C++] public: string ID3V2_TextFrameGet ( string 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 TagsEditor.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 |