libsbmlcs.Species.isSetCharge C# (CSharp) Method

isSetCharge() public method

public isSetCharge ( ) : bool
return bool
        public bool isSetCharge()
        {
            bool ret = libsbmlPINVOKE.Species_isSetCharge(swigCPtr);
            return ret;
        }

Usage Example

コード例 #1
0
 public void test_Species_setCharge3()
 {
     Species c = new  Species(2,1);
       int i = c.unsetCharge();
       assertTrue( i == libsbml.LIBSBML_OPERATION_SUCCESS );
       assertEquals( false, c.isSetCharge() );
       c = null;
 }
All Usage Examples Of libsbmlcs.Species::isSetCharge