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

In This Topic
    ZohoBooksParameter Constructor
    In This Topic
    Initializes a new instance of the ZohoBooksParameter class.
    Syntax
    'Declaration
     
    Public Function New()
    public ZohoBooksParameter()
    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