Copyright © 2011-2019 MultiMedia Soft

TagsEditor property (RO)

Previous pageReturn to chapter overviewNext page

Type

[Visual Basic]

Public Property TagsEditor As TagsEditorMan


 

[C#]

public TagsEditorMan TagsEditor {get;}


 

[C++]

public: __property TagsEditorMan* get_TagsEditor ();


 

This property is Read-only

 

 

Remarks

The embedded editor of tag information.

 

This property encapsulates the functionality of the TagsEditorMan class.

 

When using the API from legacy development environments like Visual Basic 6 or unmanaged Visual C++, where communication is performed through COM interoperability, this object can be accessed through its COM interface exposed by the TagsEditorGet method so, if in C# you access the object like this:

 

Visual C#

 

audioSoundEditorApi.TagsEditor.ALL_AnalyzeSoundOnEditor ();

 

 

in other languages you will use the following syntax

 

Unmanaged Visual C++

 

audioSoundEditorApi->TagsEditorGet()->ALL_AnalyzeSoundOnEditor ();

 

 

Visual Basic 6

 

audioSoundEditorApi.TagsEditorGet().ALL_AnalyzeSoundOnEditor

 

 

For details about the editing of tags see the How to edit tag info in sound files tutorial.