LEADTOOLS Annotations for WPF and Silverlight (Leadtools.Windows.Annotations assembly)
LEAD Technologies, Inc

CanPaste Property

Example 





Gets a value that indicates whether the clipboard contains annotation objects that can be pasted. .NET support Silverlight support
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
Copy CodeCopy Code  
Private Sub AnnAutomation_CanPaste(ByVal automation As AnnAutomation)
   If automation.CanPaste Then
      automation.Paste()
   End If
End Sub
private void AnnAutomation_CanPaste(AnnAutomation automation)
{
   if(automation.CanPaste)
      automation.Paste();
}
private void AnnAutomation_CanPaste(AnnAutomation automation)
{
   if (automation.CanPaste)
   {
      // ... paste from Clipboard here...
   }
}
Private Sub AnnAutomation_CanPaste(ByVal automation As AnnAutomation)
   If automation.CanPaste Then
      ' ... paste from Clipboard here...
   End If
End Sub
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.