Masters.Paste Method
Visio Automation Reference |
Pastes the contents of the Clipboard into an object.
Version Information
Version Added: Visio 2002
Syntax
expression.Paste(Flags)
expression A variable that represents a Masters object.
Parameters
Name | Required/Optional | Data Type | Description |
---|---|---|---|
Flags | Optional | Variant | Determines how shapes are translated during the paste operation. |
Return Value
Nothing
Remarks
The Paste method works only with Shape objects that are group shapes. Use the Type property of a shape to determine whether it is a group.
Possible values for Flags are declared by the Visio type library in VisCutCopyPasteCodes, and are described in the following table.
Flag | Value | Description |
---|---|---|
visCopyPasteNormal |
&H0 |
Default. Shapes are pasted to the center of the active window. |
visCopyPasteNoTranslate |
&H1 |
Shapes are pasted to their original coordinate locations. |
Setting Flags to visCopyPasteNormal is the equivalent of the behavior in the user interface. You should use the visCopyPasteNormal and visCopyPasteNoTranslate flags consistently. For example, if you use visCopyPasteNoTranslate to copy, you should also use that value to paste, because that is the only way to ensure that shapes are pasted to their original coordinate location.
If you need to control the format of the pasted information and (optionally) establish a link to a source file (for example, a Microsoft Office Word document), use the PasteSpecial method.
See Also