LEADTOOLS Annotations (Leadtools.Annotations assembly)
LEAD Technologies, Inc

CanPaste Property

Example 





Gets a value that indicates whether the clipboard contains annotation objects that can be pasted.
Syntax
public virtual bool CanPaste {get;}
'Declaration
 
Public Overridable ReadOnly Property CanPaste As Boolean
'Usage
 
Dim instance As AnnAutomation
Dim value As Boolean
 
value = instance.CanPaste
public virtual bool CanPaste {get;}
 get_CanPaste(); 
public:
virtual property bool CanPaste {
   bool get();
}

Property Value

true if the clipboard contains annotation objects that can be pasted; false otherwise.
Remarks
Use this property to update the user interface of your application (for example, enabling or disabling an Edit/Paste menu item). Call the Paste method to actually copy the objects from the clipboard to this AnnAutomation.
Example
 
Public Sub AnnAutomation_CanPaste(ByVal automation As AnnAutomation)
   If automation.CanPaste Then
      automation.Paste()
   End If
End Sub
public void AnnAutomation_CanPaste(AnnAutomation automation)
{
   if(automation.CanPaste)
      automation.Paste();
}
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

AnnAutomation Class
AnnAutomation Members

 

 


Products | Support | Contact Us | Copyright Notices

© 2006-2012 All Rights Reserved. LEAD Technologies, Inc.