libsbmlcs.Parameter.isSetName C# (CSharp) Method

isSetName() public method

public isSetName ( ) : bool
return bool
        public new bool isSetName()
        {
            bool ret = libsbmlPINVOKE.Parameter_isSetName(swigCPtr);
            return ret;
        }

Usage Example

コード例 #1
0
 public void test_Parameter_setName2()
 {
     Parameter p = new  Parameter(2,2);
       int i = p.setName( "1cell");
       assertTrue( i == libsbml.LIBSBML_OPERATION_SUCCESS );
       assertEquals( true, p.isSetName() );
       i = p.unsetName();
       assertTrue( i == libsbml.LIBSBML_OPERATION_SUCCESS );
       assertEquals( false, p.isSetName() );
       p = null;
 }
All Usage Examples Of libsbmlcs.Parameter::isSetName