dotConnect for Zoho CRM Documentation
Devart.Data.Zoho Namespace / ZohoParameter Class / ZohoParameter Constructor
Example

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