Handles a notification that the user has requested a cut operation. Namespace: Microsoft.ConfigurationManagement.AdminConsole
Assembly: Microsoft.ConfigurationManagement (in microsoft.configurationmanagement.dll)

Usage

Visual Basic
Dim selectionObject As Object
Dim status As AsyncStatus

Me.OnCut(selectionObject, status)

Syntax

Visual Basic
Protected Overrides Sub OnCut ( _
		selectionObject As Object, _
		status As AsyncStatus _
)
C#
protected override void OnCut (
		Object selectionObject,
		AsyncStatus status
)
C++
protected:
virtual void OnCut (
		Object^ selectionObject, 
		AsyncStatus^ status
) override
J#
protected void OnCut (
		Object selectionObject, 
		AsyncStatus status
)
JScript
protected override function OnCut (
		selectionObject : Object, 
		status : AsyncStatus
)

Parameters

selectionObject

[in] System.Object instance for the item that is cut.

status

[in] Microsoft.ManagementConsole.AsyncStatus object.

Remarks

Your application must override this method in a derived class. Standard operation for this method is to delete the item that has been cut.


Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows Server 2003, Windows Vista

Target Platforms

Windows Server 2003,Windows Vista

See Also