libsbmlcs.Model.isSetName C# (CSharp) Method

isSetName() public method

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

Usage Example

コード例 #1
0
        private string getProjectName(Model model)
        {
            var name = String.Empty;

            if (model.isSetId())
            {
                name += model.getId() + SBMLConstants.SPACE;
            }
            if (model.isSetName())
            {
                name += model.getName();
            }
            return(name != string.Empty ? name : SBMLConstants.DEFAULT_PROJECT_NAME);
        }
All Usage Examples Of libsbmlcs.Model::isSetName
Model