Copyright © 2011-2019 MultiMedia Soft

TagsEditor.WAV_DisplayChunkTextSet method

Previous pageReturn to chapter overviewNext page

Remarks

 

Sets contents of the DISP chunk. Current contents can be retrieved through the TagsEditor.WAV_DisplayChunkTextGet 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_DisplayChunkTextSet (

strText as String

) as enumErrorCodes


 

[C#]

public enumErrorCodes WAV_DisplayChunkTextSet (

string strText

);


 

[C++]

public: enumErrorCodes WAV_DisplayChunkTextSet (

string strText

);


 

Parameter

Description

 

 

strText

String of text to enter inside the chunk.

Passing an empty string causes the removal of the DISP chunk.

 

 

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.