dotConnect for Zoho Books Documentation
Devart.Data.ZohoBooks Namespace / ZohoBooksParameter Class / ZohoBooksParameter Constructor
Example

ZohoBooksParameter Constructor
Initializes a new instance of the ZohoBooksParameter class.
Syntax
'Declaration
 
Public Function New()
 
Remarks
The base constructor initializes all fields to their default values.
Example
The following example creates a new ZohoBooksParameter and sets some of its properties.
public void CreateZohoBooksParameter()
{
  ZohoBooksParameter myParameter = new ZohoBooksParameter();
  myParameter.ParameterName = "DName";
  myParameter.ZohoBooksType = ZohoBooksType.VarChar;
  myParameter.Direction = ParameterDirection.Input;
  myParameter.Size = 15;
}
Public Sub CreateZohoBooksParameter()
  Dim myParameter As New ZohoBooksParameter()
  myParameter.ParameterName = "DName"
  myParameter.ZohoBooksType = ZohoBooksType.VarChar
  myParameter.Direction = ParameterDirection.Input
  myParameter.Size = 15
End Sub
See Also