Remove a slide
Remove a slide by using the DestroyChild method.
Example
The slide slide01 has been previously created and has 3 as a handle. For more information, see Add a slide to a story.
To remove the slide, the DestroyChild method is used.
The client sends:
{
"jsonrpc": "2.0",
"id": 4,
"method": "DestroyChild",
"handle": 3,
"params": [
"slide01"
]
}
The engine returns:
{
"jsonrpc": "2.0",
"id": 4,
"result": {
"qSuccess": true
}
}
The slide slide01 is successfully removed.