ASP.NET Core MVC Controls | ComponentOne
C1.JsonNet.Converters Namespace / EnumToStringConverter Class / CamelCaseText Property






In This Topic
    CamelCaseText Property
    In This Topic
    Gets or sets a value indicating whether the written enum text should be camel case.
    Syntax
    'Declaration
     
    
    Public Property CamelCaseText As System.Boolean
    'Usage
     
    
    Dim instance As EnumToStringConverter
    Dim value As System.Boolean
     
    instance.CamelCaseText = value
     
    value = instance.CamelCaseText
    public System.bool CamelCaseText {get; set;}
    public read-write property CamelCaseText: System.Boolean; 
    public function get,set CamelCaseText : System.boolean
    public: __property System.bool get_CamelCaseText();
    public: __property void set_CamelCaseText( 
       System.bool value
    );
    public:
    property System.bool CamelCaseText {
       System.bool get();
       void set (    System.bool value);
    }

    Property Value

    true if the written enum text will be camel case; otherwise, false.
    See Also