MenuItemCollectionAddRange Method (IEnumerableCommand, Int32) |
Adds the specified commands to the collection starting at the specified order.
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public void AddRange(
IEnumerable<Command> commands,
int order = 0
)
Public Sub AddRange (
commands As IEnumerable(Of Command),
Optional order As Integer = 0
)
member AddRange :
commands : IEnumerable<Command> *
?order : int
(* Defaults:
let _order = defaultArg order 0
*)
-> unit
Parameters
- commands
- Type: System.Collections.GenericIEnumerableCommand
Commands to add. - order (Optional)
- Type: SystemInt32
Order of the items to add.
See Also