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

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

public isSetId ( ) : bool
Результат bool
        public new bool isSetId()
        {
            bool ret = libsbmlPINVOKE.Compartment_isSetId(swigCPtr);
            return ret;
        }

Usage Example

Пример #1
0
 public void test_Compartment_createWith()
 {
     Compartment c = new  Compartment(2,4);
       c.setId( "A");
       assertTrue( c.getTypeCode() == libsbml.SBML_COMPARTMENT );
       assertTrue( c.getMetaId() == "" );
       assertTrue( c.getNotes() == null );
       assertTrue( c.getAnnotation() == null );
       assertTrue( c.getName() == "" );
       assertTrue( c.getSpatialDimensions() == 3 );
       assertTrue((  "A"      == c.getId() ));
       assertTrue( c.getConstant() == true );
       assertEquals( true, c.isSetId() );
       assertEquals( false, c.isSetName() );
       c = null;
 }
All Usage Examples Of libsbmlcs.Compartment::isSetId