TagsEditor.WAV_ListInfoChunkFrameSet method |
|
Remarks
Sets the text of an INFO frame of the WAV's LIST chunk. Current contents of the INFO sub-chunk can be retrieved through the TagsEditor.WAV_ListInfoChunkFrameGet method..
The modification only happens in memory and not directly into the original sound file: in order to store modifications inside the file you need to call the TagsEditor.WAV_SaveChanges 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 WAV_ListInfoChunkFrameSet ( strFrameId as string, strText as string ) as enumErrorCodes |
[C#] public enumErrorCodes WAV_ListInfoChunkFrameSet ( string strFrameId, string strText ); |
[C++] public: enumErrorCodes WAV_ListInfoChunkFrameSet ( string strFrameId, string strText ); |
Parameter |
Description |
|
|
strFrameId |
String of 4 characters (FOURCC) containing the identifier of the INFO frame to write. You can enumerate identifiers of existing frames through the combination of the TagsEditor.WAV_ListInfoChunkUniqueFramesCountGet and TagsEditor.WAV_ListInfoChunkUniqueFramesIdGet methods. |
strText |
String of text to enter inside the given frame. Passing an empty string causes the removal of the specified INFO frame. |
Return value
Value |
Meaning |
|
|
Negative value |
An error occurred (see the LastError property for further error details) |
enumErrorCodes.ERR_NOERROR (0) |
The method call was successful. |