TagsReader.OGG_UserFrameGet method |
|
Remarks
Obtains contents of a specific user-defined frame of the OGG Vorbis tag.
For further details about methods related to tags reading refer to the TagsReaderMan class.
For details about the reading of tags see the How to read TAG information in sound files tutorial.
Syntax
[Visual Basic] Public Function OGG_UserFrameGet ( strFrameId as string ) as String |
[C#] public string OGG_UserFrameGet ( string strFrameId ); |
[C++] public: string OGG_UserFrameGet ( string strFrameId ); |
Parameter |
Description |
|
|
strFrameId |
String containing the identifier of the specific user-defined frame to get. You can know which frames are available inside the OGG Vorbis tag by using the combination of the TagsReader.OGG_UniqueFramesCountGet and TagsReader.OGG_UniqueFramesIdGet methods. |
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 |