Description Returns a value from a Journal Object or its related objects.
-
Return Type
-
A Variant value. The value being sought or EMPTY for failure. Failure conditions: * pdbnodeJournal is not accessible. * ObjectFromJournalNode failure (mcdataOVSObjectWhenExists Or mcdataOVSObjectDirectWhenExists) * ObjectFromJournalNode cannot create automation object (See McDataNodes::OpenEx()) (mcdataOVSMakeObjectExist) * JournalToDatabase failure (mcdataOVSDatabase) * McDataManager::GetDBNodeValue failure
-
Syntax
-
object.JournalValue (pdbnodeJournal, sValueName, eValueSource, [sMultipleValueDelim])
The JournalValue Method syntax has these parts: |
| object | An expression evaluating to an object of type McDataJournal. | | pdbnodeJournal | Required. A McDBNode object. A McDBNode reference that is a child of HistoryFolder. | | sValueName | Required. A String value. Specifies the name of the value. | | eValueSource | Required. A mcDataObjectValueSource enumeration, as described in settings. Identifies the source of the data relative to pdbnodeJournal. | | sMultipleValueDelim | Optional. A String value. [Not available at this time] Delimiter (defaults to vbNullChar) delimiting multiple values in sValueName.. | Settings The settings for eValueSource are:
 | mcdataOVSObjectDirectWhenExists | 1 |
IDispatch property Get call on the raw object when it exists.
|
 | mcdataOVSObjectWhenExists | 2 |
Object (through it's handler) when it exists.
|
 | mcdataOVSJournal | 4 |
Journal Attribute.
|
 | mcdataOVSDatabase | 8 |
Database Attribute.
|
 | mcdataOVSMakeObjectExist | 4096 |
Attempt to Open the Object (hidden) when not already loaded.
|
|