JVCL Help:TJvID3Frame.FrameID

From Project JEDI Wiki
Jump to navigationJump to search
JEDI Visual Component Library Help

Search in JVCL Help

 
Search in all projects
 

Summary

Specifies the frame identifier for the frame.


Pascal

 propertyFrameID: TJvID3FrameID;


Description

The tag controller uses the TJvID3FrameID type to identify frames. In the tag itself the frames are identified by a 4 character long name. FrameID identifies the frame by the TJvID3FrameID type and FrameName identifies the frame by the 4 characters.
Read or set FrameID to determine or specify the frame identifier for the frame. When setting FrameID be sure that the frame identifier is supported by that specific TJvID3Frame descendant class.
Example: var

 TextFrame: TJvID3TextFrame;
begin
TextFrame := TJvID3TextFrame.FindOrCreate(MyController, fiAlbum);


 { TJvID3TextFrame supports fiTitleSortOrder }
TextFrame.FrameID := fiTitleSortOrder;


 { TJvID3TextFrame does not support fiComment, thus this will
   generate an error }
TextFrame.FrameID := fiComment;
end;


See Also

TJvID3Frame.FrameName


About

Contribute to this help topic

This documentation wiki is based on the collaborative effort of Project JEDI users. Your edits are welcome in order to improve documentation quality: edit this page