Class: TagLib::ID3v2::TextIdentificationFrame
- Defined in:
- docs/taglib/id3v2.rb
Overview
Text identification frame (T???
).
Direct Known Subclasses
Instance Attribute Summary collapse
-
#field_list ⇒ Array<String>
List of text strings in this frame.
- #text ⇒ Object writeonly
-
#text_encoding ⇒ TagLib::String constant
Encoding for storing the text in the tag, e.g.
Attributes inherited from Frame
Instance Method Summary collapse
-
#initialize(type, encoding) ⇒ TextIdentificationFrame
constructor
A new instance of TextIdentificationFrame.
Methods inherited from Frame
Constructor Details
#initialize(type, encoding) ⇒ TextIdentificationFrame
Returns a new instance of TextIdentificationFrame.
420 421 |
# File 'docs/taglib/id3v2.rb', line 420 def initialize(type, encoding) end |
Instance Attribute Details
#field_list ⇒ Array<String>
Returns list of text strings in this frame.
431 432 433 |
# File 'docs/taglib/id3v2.rb', line 431 def field_list @field_list end |
#text=(value) ⇒ Object (writeonly)
434 435 436 |
# File 'docs/taglib/id3v2.rb', line 434 def text=(value) @text = value end |
#text_encoding ⇒ TagLib::String constant
Encoding for storing the text in the tag, e.g.
TagLib::String::UTF8
. See the section String Encodings in
TagLib.
428 429 430 |
# File 'docs/taglib/id3v2.rb', line 428 def text_encoding @text_encoding end |