One cell in a pitch array.
abjad> from abjad.tools import pitcharraytools
abjad> array = pitcharraytools.PitchArray([[1, 2, 1], [2, 1, 1]])
abjad> print array
[ ] [ ] [ ]
[ ] [ ] [ ]
abjad> cell = array[0][1]
abjad> cell
PitchArrayCell(x2)
abjad> cell.column_indices
(1, 2)
abjad> cell.indices
(0, (1, 2))
abjad> cell.is_first_in_row
False
abjad> cell.is_last_in_row
False
abjad> cell.next
PitchArrayCell(x1)
abjad> cell.parent_array
PitchArray(PitchArrayRow(x1, x2, x1), PitchArrayRow(x2, x1, x1))
abjad> cell.parent_column
PitchArrayColumn(x2, x2)
abjad> cell.parent_row
PitchArrayRow(x1, x2, x1)
abjad> cell.pitches
[]
abjad> cell.prev
PitchArrayCell(x1)
abjad> cell.row_index
0
abjad> cell.token
2
abjad> cell.width
2
Return pitch array cell.
x.__delattr__(‘name’) <==> del x.name
Note
Inherited from __builtin__.object
True when id(self) equals id(arg).
Return boolean.
Note
Inherited from abctools.AbjadObject
Abjad objects by default do not implement this method.
Raise exception.
Note
Inherited from abctools.AbjadObject
Abjad objects by default do not implement this method.
Raise exception
Note
Inherited from abctools.AbjadObject
Note
Inherited from __builtin__.object
Abjad objects by default do not implement this method.
Raise exception.
Note
Inherited from abctools.AbjadObject
Abjad objects by default do not implement this method.
Raise exception.
Note
Inherited from abctools.AbjadObject
True when id(self) does not equal id(arg).
Return boolean.
Note
Inherited from abctools.AbjadObject
x.__setattr__(‘name’, value) <==> x.name = value
Note
Inherited from __builtin__.object