Deletes a property set row on a document or a folder in the specified path.

Syntax

Visual Basic (declaration)
Public Function DeletePropertySetRow( _ 
ByVal AuthenticationTicket as String, _ ByVal Path as String, _ ByVal xmlpset as String) as XmlNode

C# (declaration)
public XmlNode DeletePropertySetRow( 
string AuthenticationTicket, string Path, string xmlpset)

Parameters

AuthenticationTicket
    string infoRouter ticket
Path
    string An infoRouter document or folder path
xmlpset
    string a XML fragment for property set information. See the remarks section.

Return Value

returns xml fragment.
<response success="true" error="">
if success attribute is "true", the property set has been deleted successfully.
if success attribute is "false", the error attribute indicates the encountered error.

Remarks

The caller must have at least "Change" Permission on the document or Folder.

xmlPset must be organized as sample below:

<Propertysets>
<propertyset Name="LETTER">
<propertyrow RowNbr="1"/>
<propertyrow RowNbr="3"/>
</propertyset>
</Propertysets>