|
| void | setValue (qint64 a, qint64 b, qint64 c, qint64 d, qint64 e, qint64 f) |
| void | updateValue (qint64 a, qint64 b, qint64 c, qint64 d, qint64 e, qint64 f) |
| void | setValue (const QVariant &value) |
| void | updateValue (const QVariant &value) |
| virtual qint64 | value (int i) |
| void | setValue (const QVariantList &value) |
| void | updateVectorValue (const QVariantList &value) |
| void | updateValue (const QVariantList &value) |
| bool | isInventorField () |
| bool | isMLField () |
| QString | getType () const |
| QString | getName () const |
| virtual QString | stringValue () |
| virtual QString | persistentStringValue () |
| virtual void | setPersistentStringValue (const QString &value) |
| QString | truncatedStringValue (int maxChars=80) |
| virtual QString | stringValueForProfiling () |
| virtual void | touch () |
| MLABFieldOwner * | owner () |
| MLABField * | connectedField () |
| MLABField * | inputField () |
| bool | isConnected () |
| bool | isConnectedToFieldInSameNetwork () |
| int | outputCount () |
| MLABField * | outputField (int index) |
| QList< MLABField * > | outputFields () |
| bool | connectFrom (MLABField *field) |
| void | disconnect () |
| void | disconnectOutputs () |
| void | disconnectAll () |
| bool | connectFromUndoable (MLABField *field) |
| virtual bool | isConnectionPossible (MLABField *field) |
| bool | isConnectionInSameNetworkPossible (MLABField *field) |
| bool | isInSameNetwork (MLABField *field) |
| virtual QString | toolTipInfo () |
| void | setPriority (int aPriority) |
| int | priority () |
| void | setProxy (bool flag) |
| bool | isProxy () |
| void | setComment (const QString &comment) |
| QString | comment () |
| void | setTitle (const QString &title) |
| QString | title () |
| QString | fullName () const |
| bool | isHidden () |
| void | setHidden (bool flag) |
| bool | isIgnored () |
| void | setIgnored (bool flag) |
| bool | isFilePath () |
| void | setIsFilePath (bool flag) |
| bool | isInterfaceField () |
| bool | isParameterField () |
| bool | isInput () |
| bool | isOutput () |
| bool | isInOut () |
| QString | infoString () |
| bool | isPersistent () const |
| bool | isEditable () const |
| bool | triggersLoading () const |
| void | setTriggersLoading (bool flag) |
A field containing a vector of 6 integers.
The 'value' property of this field is an array with four double values.
# getting value:
array = ctx.field("somefield").vectorValue()
# setting value:
ctx.field("somefield").setVectorValue([1,2,3,4,5,6])