Hi everybody (hope many read this!)
has anyone ever used the 'CreateNoteParamValue' method?
I want to create a parameter in a note (preferably with
J-Link), but it just runs over the code without doing
anything..
i have tried 2 ways:
ParamValue
parva=pfcModelItem.CreateNoteParamValue(NoteId);
parva.SetStringValue("string value")
=> above example seems odd to me, because i don't need to
enter the name of the parameter anywhere..
So I also tried normal way;
ParameterOwner paro=(ParameterOwner)item; 'item = note
Paramvalue
parva=pfcModelItem.CreateStringParamValue("string value")
paro.CreateParam("para name",parva);
=> this gives toolkitbadinput error
all thoughts are welcome.
has anyone ever used the 'CreateNoteParamValue' method?
I want to create a parameter in a note (preferably with
J-Link), but it just runs over the code without doing
anything..
i have tried 2 ways:
ParamValue
parva=pfcModelItem.CreateNoteParamValue(NoteId);
parva.SetStringValue("string value")
=> above example seems odd to me, because i don't need to
enter the name of the parameter anywhere..
So I also tried normal way;
ParameterOwner paro=(ParameterOwner)item; 'item = note
Paramvalue
parva=pfcModelItem.CreateStringParamValue("string value")
paro.CreateParam("para name",parva);
=> this gives toolkitbadinput error
all thoughts are welcome.