ActionList.DeleteRange Method (Int64, Int64)

 

Deletes a range of actions from this action list.

Namespace:   Microsoft.VisualStudio.TestTools.UITest.Common
Assembly:  Microsoft.VisualStudio.TestTools.UITest.Common (in Microsoft.VisualStudio.TestTools.UITest.Common.dll)

Syntax

public int DeleteRange(
    long startId,
    long stopId
)
public:
int DeleteRange(
    long long startId,
    long long stopId
)
member DeleteRange : 
        startId:int64 *
        stopId:int64 -> int
Public Function DeleteRange (
    startId As Long,
    stopId As Long
) As Integer

Parameters

  • startId
    Type: System.Int64

    An int that represents the ID of the starting action in the range to delete.

  • stopId
    Type: System.Int64

    An int that represents the ID of the ending action in the range to delete.

Return Value

Type: System.Int32

The number of actions that were deleted.

See Also

ActionList Class
Microsoft.VisualStudio.TestTools.UITest.Common Namespace

Return to top