JVCL Help:TJvID3Frame.FrameID
From Project JEDI Wiki
Jump to navigationJump to searchJVCL Help: TJvID3Frame.FrameID Property
[+] TJvID3Frame Methods
[+] TJvID3Frame Properties
Search in JVCL Help
Search in all projectsSummary
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
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