ItemContainerGenerator.GenerateBatches Method

Definition

Returns an object that manages the Status property.

public:
 IDisposable ^ GenerateBatches();
public IDisposable GenerateBatches ();
member this.GenerateBatches : unit -> IDisposable
Public Function GenerateBatches () As IDisposable

Returns

An object that manages the Status property.

Remarks

A class that inherits from VirtualizingPanel can use this method to get an object that will properly set the generated property. When the GenerateBatches method returns, Status property is set to GeneratingContainers. When the object is disposed, Status is set to ContainersGenerated. You can pass the object to a using statement that encapsulates your logic that generates item containers. When the object returned from GenerateBatches goes out of scope, the Status property will be properly set.

Applies to

See also