ALM Site Administration API Type Library
DeleteSiteSingleParam Method
Description
Deletes a site configuration parameter.
Syntax
Visual Basic
Public Function DeleteSiteSingleParam( _
   ByVal ParamName As String _
) As String
Parameters
ParamName
The parameter name.
Return Type
Returns "1" on success.
Example
Private Sub DeleteSiteSingleParam()

'The following Visual Basic example deletes a parameter
'  from the site.
    Dim sReply As String

    On Error GoTo err
    sReply = m_SAClient.DeleteSiteSingleParam _
        ("MaxReqsPerBranch")

    MsgBox sReply
    Exit Sub

err:
    MsgBox "Program failed:" + err.Description
End Sub
See Also