ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc Namespace / Interleaved2of5 Class / CheckCharacter Property






In This Topic
    CheckCharacter Property (Interleaved2of5)
    In This Topic
    Indicates whether to enable the check character. Since Interleaved2of5 requires an even number of digits to “interleave” numbers, the data encoded must be an odd number of digits when using a check character, thus resulting in the required even number of digits.
    Syntax
    'Declaration
     
    
    <JsonAttribute(1)>
    <System.ComponentModel.DefaultValueAttribute(False)>
    Public Overridable Property CheckCharacter As System.Boolean
    'Usage
     
    
    Dim instance As Interleaved2of5
    Dim value As System.Boolean
     
    instance.CheckCharacter = value
     
    value = instance.CheckCharacter
    [Json(1)]
    [System.ComponentModel.DefaultValue(false)]
    public virtual System.bool CheckCharacter {get; set;}
    public read-write property CheckCharacter: System.Boolean; virtual; 
    JsonAttribute(1)
    System.ComponentModel.DefaultValueAttribute()
    public function get,set CheckCharacter : System.boolean
    [Json(1)]
    [System.ComponentModel.DefaultValue(false)]
    public: __property virtual System.bool get_CheckCharacter();
    public: __property virtual void set_CheckCharacter( 
       System.bool value
    );
    [Json(1)]
    [System.ComponentModel.DefaultValue(false)]
    public:
    virtual property System.bool CheckCharacter {
       System.bool get();
       void set (    System.bool value);
    }
    See Also