Click or drag to resize

ConneXionDeleteNote Method

Used to Delete the Note.

Namespace:  ConneXion
Assembly:  ConneXion (in ConneXion.dll) Version: 2020.0
Syntax
public ConneXionResult DeleteNote(
	Note Note
)

Parameters

Note
Type: ConneXionNote
Note object to Delete

Return Value

Type: ConneXionResult
ConneXionResult.
Remarks

Required Fields

  • TAMUserName
  • TAMPassword
  • TAMCentralAgency - only if agency is on AppliedOnline
  • LicenseKey - only if agency is an Agency of Vendor
  • EntityID
  • EntityType
  • RecordNumber
Examples
VB
Dim oConneXion As New ConneXion.ConneXion
Dim oNote As New ConneXion.Note
Dim oResult As ConneXion.ConneXionResult

oNote.TAMUserName = "EXEC"
oNote.TAMPassword = "PSWD"
oNote.EntityID = "BOOKR-1"
oNote.EntityType = "C"
oNote.RecordNumber = "12"

oResult = oConneXion.DeleteNote(oNote)

If oResult.Success Then
    MessageBox.Show("Delete Note is Successful")
Else
    txtResult.Text = "Number: " & oResult.Number & vbCrLf & "Desc: " & oResult.Description & vbCrLf & "TAMErrorNumber: " &
        oResult.TAMErrorNumber & vbCrLf & "TAMErroDesc: " & oResult.TAMDescription
End If
See Also