target property

Gets the target of a processing instruction.

 

Syntax

HRESULT value = object.get_target(BSTR* p);

Property values

Type: BSTR

The name of the processing instruction.

Standards information

Remarks

Processing instructions are supported only by XML documents.

A processing instruction provides direction to an XML parser. The following code example shows a processing instruction that is specified in markup.

<?xml-stylesheet type="text/css" href="style.css"?>

For this example, the IDOMProcessingInstruction::target property would return xml-stylesheet.

See also

Reference

IHTMLDocument7::createProcessingInstruction

IDOMProcessingInstruction::data