Feature

FL.Feature = class Feature(object)

===============================================
  Feature - class to represent OpenType feature-definition record
===============================================

CONSTRUCTOR:
  Feature() - generic constructor, creates an empty Feature record
  Feature(Feature) - copy constructor
  Feature(string tag) - creates feature, assigns 'tag' and empty value
  Feature(string tag, string value) - creates feature and assigns values to both attributes

ATTRIBUTES:
  parent (read-only) - parent object, Font
  tag (string) - feature's tag
  value (string) - feature's text

OPERATIONS:

METHODS

Methods

__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__repr__(...)
x.__repr__() <==> repr(x)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Attributes

__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T