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.
Returns a collection that contains the specified 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 ICollection<UITestAction> GetRange(
long startId,
long stopId
)
public:
ICollection<UITestAction^>^ GetRange(
long long startId,
long long stopId
)
member GetRange :
startId:int64 *
stopId:int64 -> ICollection<UITestAction>
Public Function GetRange (
startId As Long,
stopId As Long
) As ICollection(Of UITestAction)
Parameters
startId
Type: System.Int64An Int64 that represents the identifier for the item at the start of the range.
stopId
Type: System.Int64An Int64 that represents the identifier for the item at the end of the range.
Return Value
Type: System.Collections.Generic.ICollection<UITestAction>
A collection that contains the specified range of actions from this action list.
See Also
ActionList Class
Microsoft.VisualStudio.TestTools.UITest.Common Namespace
Return to top