libsbmlcs.SBase.getNotesString C# (CSharp) Method

getNotesString() public method

public getNotesString ( ) : string
return string
        public string getNotesString()
        {
            string ret = libsbmlPINVOKE.SBase_getNotesString__SWIG_0(swigCPtr);
            return ret;
        }

Usage Example

Example #1
0
    private static void printNotes(SBase sb, string id)
    {
        if (!sb.isSetNotes()) return;

        Console.WriteLine("----- " + sb.getElementName() + " (" + id
        + ") notes -----");
        Console.WriteLine(sb.getNotesString());
        Console.WriteLine();
    }
SBase