ModelFactory.CreateItem Method (EditingContext, Type, CreateOptions, array<Object )
Creates a new model item for the specified item type.
Namespace: Microsoft.Windows.Design.Model
Assembly: Microsoft.Windows.Design.Interaction (in Microsoft.Windows.Design.Interaction.dll)
Syntax
'Declaration
Public Shared Function CreateItem ( _
context As EditingContext, _
itemType As Type, _
options As CreateOptions, _
ParamArray arguments As Object() _
) As ModelItem
public static ModelItem CreateItem(
EditingContext context,
Type itemType,
CreateOptions options,
params Object[] arguments
)
public:
static ModelItem^ CreateItem(
EditingContext^ context,
Type^ itemType,
CreateOptions options,
... array<Object^>^ arguments
)
static member CreateItem :
context:EditingContext *
itemType:Type *
options:CreateOptions *
arguments:Object[] -> ModelItem
public static function CreateItem(
context : EditingContext,
itemType : Type,
options : CreateOptions,
... arguments : Object[]
) : ModelItem
Parameters
- context
Type: Microsoft.Windows.Design.EditingContext
An EditingContext representing the designer's editing context.
- itemType
Type: System.Type
A Type representing the type of item to create.
- options
Type: Microsoft.Windows.Design.Model.CreateOptions
A set of create options to use when creating the item. The default value is None.
- arguments
Type: array<System.Object[]
An optional array of arguments that should be passed to the constructor of the item.
Return Value
Type: Microsoft.Windows.Design.Model.ModelItem
A ModelItem that represents the newly created item type.
Exceptions
Exception | Condition |
---|---|
ArgumentNullException | itemType or context is nulla null reference (Nothing in Visual Basic). |
ArgumentOutOfRangeException | options is not valid. |
InvalidOperationException | There is no editing model in the context that can create new items. |
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
Microsoft.Windows.Design.Model Namespace