libsbmlcs.Model.getName C# (CSharp) Method

getName() public method

public getName ( ) : string
return string
        public new string getName()
        {
            string ret = libsbmlPINVOKE.Model_getName(swigCPtr);
            return ret;
        }

Usage Example

コード例 #1
0
ファイル: CompartmentImporter.cs プロジェクト: Yuri05/MoBi
 /// <summary>
 ///     Creates the TopContainer of the Spatial Structure.
 /// </summary>
 internal void CreateTopContainer(Model model)
 {
     _topContainer = _objectBaseFactory.Create <IContainer>()
                     .WithId(SBMLConstants.SBML_TOP_CONTAINER)
                     .WithName("TOPCONTAINER" + SBMLConstants.SBML + model.getName())
                     .WithMode(ContainerMode.Logical)
                     .WithContainerType(ContainerType.Compartment);
 }
All Usage Examples Of libsbmlcs.Model::getName
Model