ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc Namespace / InputMask Class / RawValue Property






In This Topic
    RawValue Property (InputMask)
    In This Topic
    Gets or sets the raw value of the control (excluding mask literals).
    Syntax
    'Declaration
     
    
    Public Property RawValue As System.String
    'Usage
     
    
    Dim instance As InputMask
    Dim value As System.String
     
    instance.RawValue = value
     
    value = instance.RawValue
    public System.string RawValue {get; set;}
    public read-write property RawValue: System.String; 
    public function get,set RawValue : System.String
    public: __property System.string* get_RawValue();
    public: __property void set_RawValue( 
       System.string* value
    );
    public:
    property System.String^ RawValue {
       System.String^ get();
       void set (    System.String^ value);
    }
    Remarks
    The raw value of the control excludes prompt and literal characters.
    See Also