Description Load the clipboard with data from this object.
-
Return Type
-
A Variant value. A String with the name of the clipboard format. Failure Returns vbNullString. Failure conditions: McDataHandler specific.
-
Syntax
-
object.ClipboardData (lClipFormat, [ePreferredDropEffect], [sDisplayName], [eValueSource], [lScaleToWidthPixels], [lScaleToHeightPixels], [vExtraContent], [dDaysToSearch], [sAttributeName], [vAttributeValue])
The ClipboardData Method syntax has these parts: |
| object | An expression evaluating to an object of type McDataNodes. | | lClipFormat | Required. A Long value. The needed clipboard format. When either 0 or ClipboardFormatNumber the clipboard will be loaded with information about the Selection. Otherwise the specific format will be returned for the Current. | | ePreferredDropEffect | Optional. An OLEDropEffectConstants enumeration, as described in settings. | | sDisplayName | Optional. A String value. An identifier specifying a particular McDataSource implementation. | | eValueSource | Optional. A mcDataObjectValueSource enumeration, as described in settings. | | lScaleToWidthPixels | Optional. A Long value. | | lScaleToHeightPixels | Optional. A Long value. | | vExtraContent | Optional. A Variant value. | | dDaysToSearch | Optional. A Double value. | | sAttributeName | Optional. A String value. | | vAttributeValue | Optional. A Variant value. | Settings The settings for ePreferredDropEffect are:
 | vbDropEffectNone | 0 |
No OLE drag/drop operation has taken place/would take place.
|
 | vbDropEffectCopy | 1 |
A mask to indicate that a copy has taken place/would take place.
|
 | vbDropEffectMove | 2 |
A mask to indicate that a move has take place/would take place.
|
 | vbDropEffectLink | 4 |
A mask to indicate that a link has take place/would take place.
|
 | vbDropEffectScroll | -2147483648 |
A mask to indicate that the drop target window has scrolled/would scroll.
|
 | vbDropEffectAll | -2147483641 |
A mask to indicate for all drop target actions known to this type.
|
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.
|
|