libsbmlcs.SBase.setNotes C# (CSharp) Method

setNotes() public method

public setNotes ( XMLNode notes ) : int
notes XMLNode
return int
        public int setNotes(XMLNode notes)
        {
            int ret = libsbmlPINVOKE.SBase_setNotes__SWIG_0(swigCPtr, XMLNode.getCPtr(notes));
            return ret;
        }

Same methods

SBase::setNotes ( string notes ) : int
SBase::setNotes ( string notes, bool addXHTMLMarkup ) : int

Usage Example

コード例 #1
0
ファイル: TestSBase.cs プロジェクト: TotteKarlsson/roadrunner
 void setOrAppendNotes(SBase sbase, string note)
 {
     if (sbase.isSetNotes ()) {
         sbase.appendNotes (note);
     } else {
         sbase.setNotes (note);
     }
 }
SBase