Gets or sets a value indicating whether this instance is new.
            
            
            Syntax
            
            
            
            
            'Declaration
 
Public Property IsNew As Boolean
             
        
            
            'Usage
 
Dim instance As RateCardFinder
Dim value As Boolean
 
instance.IsNew = value
 
value = instance.IsNew
             
        
            
            public bool IsNew {get; set;}
             
        
            
            public read-write property IsNew: Boolean; 
             
        
            
            public function get,set IsNew : boolean
             
        
            
            public: __property bool get_IsNew();
public: __property void set_IsNew( 
   bool value
);
             
        
            
            public:
property bool IsNew {
   bool get();
   void set (    bool value);
}
             
        
             
        
            
            
            Property Value
true if this instance is new; otherwise, 
false.
 
            
            
            
            
            
            
            
            
            
            
            
            See Also