libsbmlcs.Species.isSetId C# (CSharp) Method

isSetId() public method

public isSetId ( ) : bool
return bool
        public new bool isSetId()
        {
            bool ret = libsbmlPINVOKE.Species_isSetId(swigCPtr);
            return ret;
        }

Usage Example

コード例 #1
0
 public void test_Species_setId4()
 {
     Species c = new  Species(2,2);
       int i = c.setId( "cell");
       assertTrue( i == libsbml.LIBSBML_OPERATION_SUCCESS );
       assertEquals( true, c.isSetId() );
       assertTrue((  "cell"  == c.getId() ));
       i = c.setId("");
       assertTrue( i == libsbml.LIBSBML_OPERATION_SUCCESS );
       assertEquals( false, c.isSetId() );
       c = null;
 }
All Usage Examples Of libsbmlcs.Species::isSetId