Leadtools.Windows.Annotations Requires Document/Medical license. | Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
RubberStampButtonDropDownContextMenu Property
See Also  Example
Leadtools.Windows.Annotations Namespace > AnnAutomationManager Class : RubberStampButtonDropDownContextMenu Property





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);
}
XAML Property Element Usage 

<object> <object.RubberStampButtonDropDownContextMenu> <ContextMenu .../> </object.RubberStampButtonDropDownContextMenu> </object>

XAML Property Element Usage 

<object> <object.RubberStampButtonDropDownContextMenu> <ContextMenu .../> </object.RubberStampButtonDropDownContextMenu> </object>

Return 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; 
   } 
}

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 ContextMenu derived class if desired. For a list of available rubber stamp types, refer to the AnnRubberStampType enumeration.

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Vista, and Windows Server 2003 family

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.