PDFOUTLINENODE_Delete
IPDFDocument3 :: Outlines

See Also Example
Collapse All

This method deletes the current node from the outline tree.

Syntax

HRESULT PDFOUTLINENODE_Delete ()
Return value
If successful, this method returns S_OK. If it fails, this method should return one of the error values.

Remarks

Removes a node and its children from the tree of the outline items. Use this method to delete a node and free all associated memory.

Equivalent in new interface: IPDFDocument4::DeleteOutline.

Example

Deleting the Current Node

Delphi
[copy to clipboard]
{ PDF object is supposed to be created }
PDF.BeginDoc;
lAction := PDF.CreateGoToPageAction(0, 0);
ind1 := PDF.PDFOUTLINES_Add(0, 'Outline 1', lAction, charsetANSI_CHARSET);
ind2 := PDF.PDFOUTLINES_AddChild(ind1, 'Outline 2', lAction, charsetANSI_CHARSET);
ind3 := PDF.PDFOUTLINES_AddChild(ind1, '-= Wrong =-', lAction, charsetANSI_CHARSET);
PDF.PDFOUTLINENODE_Delete;
ind3 := PDF.PDFOUTLINES_AddChild(ind1, 'Outline 3', lAction, charsetANSI_CHARSET);
PDF.EndDoc;
C/C++
[copy to clipboard]
// PDF object is supposed to be created
PDF->BeginDoc();
LONG lAction = PDF->CreateGoToPageAction(0, 0);
LONG ind1 = PDF->PDFOUTLINES_Add(0, "Outline 1", lAction, charsetANSI_CHARSET);
LONG ind2 = PDF->PDFOUTLINES_AddChild(ind1, "Outline 2", lAction, charsetANSI_CHARSET);
LONG ind3 = PDF->PDFOUTLINES_AddChild(ind1, "-= Wrong =-", lAction, charsetANSI_CHARSET);
PDF->PDFOUTLINENODE_Delete();
ind3 = PDF->PDFOUTLINES_AddChild(ind1, "Outline 3", lAction, charsetANSI_CHARSET);
PDF->EndDoc();
C#
[copy to clipboard]
// PDF object is supposed to be created
PDF.BeginDoc();
long lAction = PDF.CreateGoToPageAction(0, 0);
long ind1 = PDF.PDFOUTLINES_Add(0, "Outline 1", lAction, TxFontCharset.charsetANSI_CHARSET);
long ind2 = PDF.PDFOUTLINES_AddChild(ind1, "Outline 2", lAction, TxFontCharset.charsetANSI_CHARSET);
long ind3 = PDF.PDFOUTLINES_AddChild(ind1, "-= Wrong =-", lAction, TxFontCharset.charsetANSI_CHARSET);
PDF.PDFOUTLINENODE_Delete();
ind3 = PDF.PDFOUTLINES_AddChild(ind1, "Outline 3", lAction, TxFontCharset.charsetANSI_CHARSET);
PDF.EndDoc();
Visual Basic
[copy to clipboard]
' PDF object is supposed to be created
PDF.BeginDoc
lAction = PDF.CreateGoToPageAction(0, 0)
ind1 = PDF.PDFOUTLINES_Add(0, "Outline 1", lAction, 0)
ind2 = PDF.PDFOUTLINES_AddChild(ind1, "Outline 2", lAction, 0)
ind3 = PDF.PDFOUTLINES_AddChild(ind1, "-= Wrong =-", lAction, 0)
PDF.PDFOUTLINENODE_Delete
ind3 = PDF.PDFOUTLINES_AddChild(ind1, "Outline 3", lAction, 0)
PDF.EndDoc

See Also

Reference