ZohoBooksParameter Constructor
Initializes a new instance of the
ZohoBooksParameter class.
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