Name removePartPhrase( )
Syntax removePartPhrase(String partTitle, String phraseTitle);
Example Etude e = new Etude(this);
e.createPart("part");
e.createPhrase("phrase_1");
e.createPhrase("phrase_2");
e.addPartPhrase("part", "phrase_1");
e.addPartPhrase("part", "phrase_2");
e.removePartPhrase("part", "phrase_1");
Parameters partTitle:string
phraseTitle: string
Return none
Usage web & application
Description Remove a phrase from a part.