Property ALVorbisDecompressor.TALVorbisDecompressor.CommentCount
From Mitov Wiki Doc
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Class: TALVorbisDecompressor
Contents |
Syntax
Delphi:
property CommentCount : Integer read GetCommentCount;
C++ Builder:
__property int CommentCount = { read=GetCommentCount };
Summary
Count embedded comments.
Description
Use this property to get the count of comments embedded in
the stream.
Delphi example:
var AValue : Integer; AValue := ALVorbisDecompressor1.CommentCount;
C++ Builder example:
int AValue = ALVorbisDecompressor1->CommentCount;
Visual C++(MFC/Win32) example:
int AValue = ALVorbisDecompressor1.CommentCount;
Visual C++/CLI example:
int value = vorbisDecompressor1->CommentCount;
C# example:
int value = vorbisDecompressor1.CommentCount;
VB example:
Dim AValue As Integer = VorbisDecompressor1.CommentCount;