JVCL Help:TJvID3Frame.FrameName
From Project JEDI Wiki
Jump to navigationJump to searchJVCL Help: TJvID3Frame.FrameName Property
[+] TJvID3Frame Methods
[+] TJvID3Frame Properties
Search in JVCL Help
Search in all projectsSummary
Specifies the tag frame identifier for the frame.
Pascal
propertyFrameName: AnsiString;
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 FrameName to determine or specify the frame identifier for the frame. When setting FrameName 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 (TSOT) }
TextFrame.FrameName := 'TSOT';
{ TJvID3TextFrame does not support fiComment (COMM), thus this will
generate an error }
TextFrame.FrameName := 'COMM';
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