CreateOptions Enum

Definition

Used by a ModelFactory instance to specify how to create a new item.

This enumeration supports a bitwise combination of its member values.

public enum class CreateOptions
[System.Flags]
public enum CreateOptions
[<System.Flags>]
type CreateOptions = 
Public Enum CreateOptions
Inheritance
CreateOptions
Attributes

Fields

InitializeDefaults 1

Creates the item and asks the object to perform any default initialization. This flag is generally passed in when a new control or object is being created by a user.

None 0

Creates the object and does not perform any operation on it. This is the default option when creating an item with the ModelFactory class.

Applies to