implement ToString() for SynthesizedAudioCommandNote

This commit is contained in:
Michael Becker 2020-08-28 16:41:06 -04:00
parent 57664bd409
commit 1fd6b6a192
No known key found for this signature in database
GPG Key ID: 506F54899E2BFED7

View File

@ -19,6 +19,8 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
using System;
namespace UniversalEditor.ObjectModels.Multimedia.Audio.Synthesized
{
/// <summary>
@ -72,5 +74,10 @@ namespace UniversalEditor.ObjectModels.Multimedia.Audio.Synthesized
VoiceOverlap = this.VoiceOverlap
};
}
public override string ToString()
{
return String.Format("{0} [{1}] <{2}, {3}>", Lyric, Phoneme, Position, Length);
}
}
}