libsbmlcs.Compartment.getSize C# (CSharp) Метод

getSize() публичный Метод

public getSize ( ) : double
Результат double
        public double getSize()
        {
            double ret = libsbmlPINVOKE.Compartment_getSize(swigCPtr);
            return ret;
        }

Usage Example

 public void test_Compartment_setSize2()
 {
     Compartment c = new  Compartment(2,2);
       int i = c.setSize(4);
       assertTrue( i == libsbml.LIBSBML_OPERATION_SUCCESS );
       assertTrue( c.getSize() == 4 );
       assertEquals( true, c.isSetSize() );
       i = c.unsetSize();
       assertTrue( i == libsbml.LIBSBML_OPERATION_SUCCESS );
       assertEquals( false, c.isSetSize() );
       c = null;
 }
All Usage Examples Of libsbmlcs.Compartment::getSize