ImageGear .NET v25.2 - Updated
ImageGear.Windows.Controls Assembly / ImageGear.Windows.Controls Namespace / ImGearAnnotationItems Class / Common Property




In This Topic
    Common Property (ImGearAnnotationItems)
    In This Topic
    Gets or sets the menu items that are displayed when right clicking on any mark.
    Syntax
    'Declaration
     
    Public Property Common As ObservableCollection(Of Object)
    'Usage
     
    Dim instance As ImGearAnnotationItems
    Dim value As ObservableCollection(Of Object)
     
    instance.Common = value
     
    value = instance.Common
    public ObservableCollection<object> Common {get; set;}
    public: __property ObservableCollection<Object*>* get_Common();
    public: __property void set_Common( 
       ObservableCollection<Object*>* value
    );
    public:
    property ObservableCollection<Object^>^ Common {
       ObservableCollection<Object^>^ get();
       void set (    ObservableCollection<Object^>^ value);
    }

    Property Value

    A collection of objects.
    Remarks
    These items are appended to the items that are displayed for the specific mark type. For example, if you right click on a rectangle mark, the Rectangle items are displayed in the context menu, followed by these items.
    See Also