System.ComponentModel.ISupportInitialize Interface

Assembly: System.dll
Namespace: System.ComponentModel
Summary
Specifies that this object supports a simple, transacted notification for batch initialization.
C# Syntax:
public interface ISupportInitialize
Remarks
ISupportInitialize allows controls to optimize for multiple sets to properties. As a result, you can initialize co-dependent properties or batch set multiple properties at design time.

Call the ISupportInitialize.BeginInit method to signal the object that initialization is starting. Call the ISupportInitialize.EndInit method to signal that initialization is complete.

See also:
System.ComponentModel Namespace

System.ComponentModel.ISupportInitialize Member List:

Public Methods
BeginInit Signals the object that initialization is starting.
EndInit Signals the object that initialization is complete.

System.ComponentModel.ISupportInitialize Member Details

Method: BeginInit()
Summary
Signals the object that initialization is starting.
C# Syntax:
void BeginInit();

Return to top


Method: EndInit()
Summary
Signals the object that initialization is complete.
C# Syntax:
void EndInit();

Return to top


Top of page

Copyright (c) 2002 Microsoft Corporation. All rights reserved.