"removeParagraph"
Removes a paragraph from a textEdit document at the given position.
Synopsis
void removeParagraph(int para);
Parameters
Parameter | Description |
---|---|
para | The X position of the paragraph. |
Description
Removes a paragraph from a textEdit document at the given position.
Example
Removes a paragraph from a textEdit document at the given position 8.
main()
{
TEXT_EDIT1.removeParagraph(8);
}
Assignment
textEdit