libsbmlcs.Species.unsetSpeciesType C# (CSharp) Method

unsetSpeciesType() public method

public unsetSpeciesType ( ) : int
return int
        public int unsetSpeciesType()
        {
            int ret = libsbmlPINVOKE.Species_unsetSpeciesType(swigCPtr);
            return ret;
        }

Usage Example

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