libsbmlcs.ModelHistory.isSetModifiedDate C# (CSharp) Method

isSetModifiedDate() public method

public isSetModifiedDate ( ) : bool
return bool
        public bool isSetModifiedDate()
        {
            bool ret = libsbmlPINVOKE.ModelHistory_isSetModifiedDate(swigCPtr);
            return ret;
        }

Usage Example

 public void test_ModelHistory_setModifiedDate2()
 {
     ModelHistory mh = new  ModelHistory();
       assertTrue( mh != null );
       Date date = new  Date(200,13,76,56,89,90,0,0,0);
       int i = mh.setModifiedDate(date);
       assertTrue( i == libsbml.LIBSBML_INVALID_OBJECT );
       assertTrue( mh.isSetModifiedDate() == false );
       date = null;
       mh = null;
 }
All Usage Examples Of libsbmlcs.ModelHistory::isSetModifiedDate