PC-DMIS 2021.1 Object Library
PasteFromClipboard Method
See Also  Example  Send Topic Feedback | See Object Hierarchy Chart
PCDLRN ActiveX DLL > EditWindow Object : PasteFromClipboard Method

Glossary Item Box

Description

 

This method pastes any PC-DMIS commands stored on the Clipboard into the Edit window at the current insertion point. You should first copy the commands using CopySelectedToClipboard

Syntax

Visual Basic
Public Sub PasteFromClipboard() 

Example

This example selects the current command, copies it to the Clipboard, sets the insertion point at the end of the measurement routine and then pastes the copied command.
Example (Visual Basic)Copy Code
Sub Main
	Dim App As Object
	Set App = CreateObject ("PCDLRN.Application")
	Dim Part As Object
	Set Part = App.ActivePartProgram
	Dim Ew As Object
	Set Ew = Part.EditWindow
	Dim Cmds As Object
	Set Cmds = Part.Commands
	Dim Cmd As Object
	Set Cmd = Commands.Item("PNT1");
	Cmds.SetCurrentCommand(cmd);
	Ew.CommandMode
	Ew.SelectCommand
	Ew.CopySelectedToClipboard
	Cmds.InsertionPointAfter(Cmds.LastCommand)
	Ew.PasteFromClipboard
End Sub

See Also

Copyright © 2020. Hexagon Manufacturing Intelligence – Metrology Software, Inc. All Rights Reserved.