LPVoice explanation of what LPVoice is and/or does
Inherits from: Object : LPObj
More detailed prose description of LPVoice.
See also: Object [some other help files]
Some Important Issues Regarding LPVoice (optional)
Explanation of the issues. For more information see Nil and [some other help files].
Creation / Class Methods
*new (id, voiceNum)
Short prose description of method.
id - Explanation of id. Default value is nil. Other information.
voiceNum - Explanation of voiceNum. Default value is nil. Other information.
// inline example
g = LPVoice.new;
g.doSomething; // explanation
g.cleanUpMethod;
Accessing Instance and Class Variables
voiceNum_(arg1)
voiceNum
Explanation including the type of voiceNum and a link to its help file.
Default value is nil.
notes_(arg1)
notes
Explanation including the type of notes and a link to its help file.
Default value is nil.
overrides_(arg1)
overrides
Explanation including the type of overrides and a link to its help file.
Default value is nil.
id_(arg1)
id
Explanation including the type of id and a link to its help file.
Default value is nil.
Doing Some Task (optional)
A short bit of prose explaining something about the task.
initLPVoice (argVoiceNum)
Short prose description of method.
argVoiceNum - Explanation of argVoiceNum. Default value is nil. Other information.
// inline example
g = LPVoice.initLPVoice;
g.doSomething; // explanation
g.cleanUpMethod;
output (file, score)
Short prose description of method.
file - Explanation of file. Default value is nil. Other information.
score - Explanation of score. Default value is nil. Other information.
// inline example
g = LPVoice.output;
g.doSomething; // explanation
g.cleanUpMethod;
add (anEvent)
Short prose description of method.
anEvent - Explanation of anEvent. Default value is [ ]. Other information.
// inline example
g = LPVoice.add;
g.doSomething; // explanation
g.cleanUpMethod;
addVoiceOverride (layoutObj, layoutProp, value, context)
Short prose description of method.
layoutObj - Explanation of layoutObj. Default value is nil. Other information.
layoutProp - Explanation of layoutProp. Default value is nil. Other information.
value - Explanation of value. Default value is nil. Other information.
context - Explanation of context. Default value is nil. Other information.
// inline example
g = LPVoice.addVoiceOverride;
g.doSomething; // explanation
g.cleanUpMethod;
Examples
// what this example does
e = LPVoice.new;
e.instanceMethod(someObject);
e.cleanUp;
...