fgGroups
fontgate.fgGroups = class fgGroups(object)
Glyph groups list Constructors: fgGroups() - default fgGroups(fgDataOwnerData) - parametric
Methods
- __delattr__(...)
-
x.__delattr__('name') <==> del x.name
- __delitem__(...)
-
x.__delitem__(y) <==> del x[y]
- __delslice__(...)
-
x.__delslice__(i, j) <==> del x[i:j] Use of negative indices is not supported.
- __getattribute__(...)
-
x.__getattribute__('name') <==> x.name
- __getitem__(...)
-
x.__getitem__(y) <==> x[y]
- __getslice__(...)
-
x.__getslice__(i, j) <==> x[i:j] Use of negative indices is not supported.
- __setattr__(...)
-
x.__setattr__('name', value) <==> x.name = value
- __setitem__(...)
-
x.__setitem__(i, y) <==> x[i]=y
- __setslice__(...)
-
x.__setslice__(i, j, y) <==> x[i:j]=y Use of negative indices is not supported.
- fromClassRecords(...)
- getAsClassRecords(...)
- getCompiled(...)
-
string getCompiled()
Attributes
- __new__ = <built-in method __new__ of type object>
-
T.__new__(S, ...) -> a new object with type S, a subtype of T
asDict
- fontgate.fgGroups.asDict = asDict(...)
-
dict('name' : fgGroup) asDict()
clear
- fontgate.fgGroups.clear = clear(...)
-
clear()
fromDict
- fontgate.fgGroups.fromDict = fromDict(...)
-
fromDict(dict('name':fgGroup))
get
- fontgate.fgGroups.get = get(...)
-
fgGroup get('name')
getCompiled
- fontgate.fgGroups.getCompiled = getCompiled(...)
-
string getCompiled()
has_key
- fontgate.fgGroups.has_key = has_key(...)
-
bool has_key('name')
items
- fontgate.fgGroups.items = items(...)
-
list(tuple('name', fgGroup)) items()
keys
- fontgate.fgGroups.keys = keys(...)
-
list(names of group) keys()
remove
- fontgate.fgGroups.remove = remove(...)
-
bool remove('name')
rename
- fontgate.fgGroups.rename = rename(...)
-
bool rename('old_name', 'new_name')
values
- fontgate.fgGroups.values = values(...)
-
list(fgGroup) values()