Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
InkEdit.CreateParams Property |
Gets an overridden version of the CreateParams property that contains the required creation parameters for when the control handle is created.
Definition
Visual Basic .NET Overrides Protected ReadOnly Property CreateParams As CreateParams C# protected override CreateParams CreateParams { get; } Managed C++ protected: __property virtual CreateParams* get_CreateParams();
Property Value
System.Windows.Forms.CreateParams. The required creation parameters for when the control handle is created.
This property is read-only. This property has no default value.
Exceptions
Win32Exception
: CannotLoadInkEdit
Remarks
This property overrides the CreateParams
property of the RichTextBox
object and updates the ClassName
property to specify the InkEdit control class name.
Caution: If you create a class that inherits from InkEdit and change the ClassName
property, the InkEdit control will not work properly. Consequently, you should avoid overriding the CreateParams property.
See Also