Jump to content

how we know extended functions


Recommended Posts

Hi, this piece of code copy an image to clipboard, nothing much.

My question is where do I read/know that extended functions like $oIE.document.Body.CreateControlRange()

$oIE = _IECreate("http://www.google.com")

    $oImg = _IEImgGetCollection($oIE, 0)
    $oRange = $oIE.document.Body.CreateControlRange()
    $oRange.Add($oImg)

    $oRange.ExecCommand('Copy')

Thanks

Link to comment
Share on other sites

My question is where do I read/know that extended functions like $oIE.document.Body.CreateControlRange()

You can find them on Microsoft's MSDN site.

http://msdn.microsoft.com/en-us/library/ms536385(VS.85).aspx

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...