ActionList.Find Method (Int64)

 

Searches for an action that has the given identifier and returns the action.

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

Syntax

public UITestAction Find(
    long id
)
public:
UITestAction^ Find(
    long long id
)
member Find : 
        id:int64 -> UITestAction
Public Function Find (
    id As Long
) As UITestAction

Parameters

  • id
    Type: System.Int64

    An Int64 value that represents the possible identifier for an action.

Return Value

Type: Microsoft.VisualStudio.TestTools.UITest.Common.UITestAction

If found, the action; otherwise, null.

See Also

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

Return to top