libsbmlcs.SBase.isSetNotes C# (CSharp) Method

isSetNotes() public method

public isSetNotes ( ) : bool
return bool
        public bool isSetNotes()
        {
            bool ret = libsbmlPINVOKE.SBase_isSetNotes(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();
    }
All Usage Examples Of libsbmlcs.SBase::isSetNotes
SBase