RibbonMenuButton Constructor (String, IEnumerable<RibbonButton>, ImageSource, ImageSource)
Applies to v2.
Initializes a new instance of the RibbonMenuButton class.
Namespace: Microsoft.WebMatrix.Extensibility
Assembly: Microsoft.WebMatrix.Extensibility (in Microsoft.WebMatrix.Extensibility.dll)
Syntax
'Declaration
Public Sub New ( _
label As String, _
items As IEnumerable(Of RibbonButton), _
smallImage As ImageSource, _
largeImage As ImageSource _
)
'Usage
Dim label As String
Dim items As IEnumerable(Of RibbonButton)
Dim smallImage As ImageSource
Dim largeImage As ImageSource
Dim instance As New RibbonMenuButton(label, items, _
smallImage, largeImage)
public RibbonMenuButton(
string label,
IEnumerable<RibbonButton> items,
ImageSource smallImage,
ImageSource largeImage
)
public:
RibbonMenuButton(
String^ label,
IEnumerable<RibbonButton^>^ items,
ImageSource^ smallImage,
ImageSource^ largeImage
)
new :
label:string *
items:IEnumerable<RibbonButton> *
smallImage:ImageSource *
largeImage:ImageSource -> RibbonMenuButton
public function RibbonMenuButton(
label : String,
items : IEnumerable<RibbonButton>,
smallImage : ImageSource,
largeImage : ImageSource
)
Parameters
label
Type: System.StringLabel for the item.
items
Type: System.Collections.Generic.IEnumerable<RibbonButton>Sequence of RibbonButtons to show when the menu-button is pressed.
smallImage
Type: System.Windows.Media.ImageSourceA 16x16 image for the button.
largeImage
Type: System.Windows.Media.ImageSourceA 32x32 image for the button.