LEADTOOLS Annotations for WPF and Silverlight (Leadtools.Windows.Annotations assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.31
RubberStampButtonDropDownContextMenu Property
See Also 
Leadtools.Windows.Annotations Namespace > AnnAutomationManager Class : RubberStampButtonDropDownContextMenu Property



The RubberStampButtonDropDownContextMenu Property supports WPF/Silverlight.

The RubberStampButtonDropDownContextMenu Property is available in LEADTOOLS Document and Medical Imaging toolkits.

Gets or sets the context menu for the rubber stamp toolbar button of this AnnAutomationManager.

Syntax

Visual Basic (Declaration) 
Public Property RubberStampButtonDropDownContextMenu As ContextMenu
Visual Basic (Usage)Copy Code
Dim instance As AnnAutomationManager
Dim value As ContextMenu
 
instance.RubberStampButtonDropDownContextMenu = value
 
value = instance.RubberStampButtonDropDownContextMenu
C# 
public ContextMenu RubberStampButtonDropDownContextMenu {get; set;}
C++/CLI 
public:
property ContextMenu^ RubberStampButtonDropDownContextMenu {
   ContextMenu^ get();
   void set (    ContextMenu^ value);
}

Property Value

The context menu for the rubber stamp toolbar button of this AnnAutomationManager.

Example

This example disables the "Void" rubber stamp type.

Visual BasicCopy Code
Private Sub AnnAutomationManager_RubberStampButtonDropDownContextMenu(ByVal manager As AnnAutomationManager)
   For Each item As MenuItem In manager.RubberStampButtonDropDownContextMenu.Items
      If String.Compare(CStr(item.Header), "Void", False) = 0 Then
         item.IsEnabled = False
      End If
   Next item
End Sub
C#Copy Code
private void AnnAutomationManager_RubberStampButtonDropDownContextMenu(AnnAutomationManager manager)
{
   foreach(MenuItem item in manager.RubberStampButtonDropDownContextMenu.Items)
   {
      if(string.Compare((string)item.Header, "Void", false) == 0)
         item.IsEnabled = false;
   }
}
SilverlightCSharpCopy Code
SilverlightVBCopy Code

Remarks

The ToolBar can create a button for the rubber stamp objects. The value of this property is the context menu used when this button is left or rightclicked.

You can directly manipulate (for more information, refer to Localization of LEADTOOLS for .NET WPF Annotations Automation) this context menu or set your own System.Windows.Controls.ContextMenu derived class if desired. For a list of available rubber stamp types, refer to the AnnRubberStampType enumeration.

Requirements

Target Platforms: Silverlight 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)

See Also

RubberStampButtonDropDownContextMenu requires a Document/Medical product license and unlock key. For more information, refer to: Imaging Pro/Document/Medical Features and Unlocking Special LEAD Features.