marktools.detach_marks_attached_to_component

abjad.tools.marktools.detach_marks_attached_to_component.detach_marks_attached_to_component(component)[source]

New in version 2.0.

Detach marks attached to component:

abjad> staff = Staff("c'8 d'8 e'8 f'8")
abjad> slur = spannertools.SlurSpanner(staff.leaves)
abjad> marktools.Articulation('^')(staff[0])
Articulation('^')(c'8)
abjad> marktools.LilyPondComment('comment 1')(staff[0])
LilyPondComment('comment 1')(c'8)
abjad> marktools.LilyPondCommandMark('slurUp')(staff[0])
LilyPondCommandMark('slurUp')(c'8)
abjad> f(staff)
\new Staff {
    % comment 1
    \slurUp
    c'8 -\marcato (
    d'8
    e'8
    f'8 )
}
abjad> marktools.get_marks_attached_to_component(staff[0])
(Articulation('^')(c'8), LilyPondComment('comment 1')(c'8), LilyPondCommandMark('slurUp')(c'8))
abjad> marktools.detach_marks_attached_to_component(staff[0])
(Articulation('^'), LilyPondComment('comment 1'), LilyPondCommandMark('slurUp'))
abjad> marktools.get_marks_attached_to_component(staff[0])
()

Return tuple or zero or more marks detached.

This Page