###User Defined Function###
_ClipBoard_Open

###Description###
Opens the clipboard and prevents other applications from modifying the clipboard

###Syntax###
#include <Clipboard.au3>
_ClipBoard_Open ( $hOwner )


###Parameters###
@@ParamTable@@
$hOwner
	Handle to the window to be associated with the open clipboard. If this parameter is 0, the open
	clipboard is associated with the current task.
@@End@@

###ReturnValue###
@@ReturnTable@@
Success:	True
Failure:	False
@@End@@


###Remarks###
This function fails if another window has the clipboard open. Call the <a href="_ClipBoard_Close.htm">_ClipBoard_Close()</a> function after every successful call to this function.
The window identified by the $hOwner parameter does not become the clipboard owner unless the <a href="_ClipBoard_Empty.htm">_ClipBoard_Empty()</a> function is called. If you call <a href="_ClipBoard_Open.htm">_ClipBoard_Open()</a> with hwnd set to 0, <a href="_ClipBoard_Empty.htm">_ClipBoard_Empty()</a> sets the clipboard owner to 0 which causes <a href="_ClipBoard_SetData.htm">_ClipBoard_SetData()</a> to fail.


###Related###
_ClipBoard_Close, _ClipBoard_Empty, _ClipBoard_EnumFormats, _ClipBoard_GetOpenWindow, _ClipBoard_SetDataEx


###See Also###
@@MsdnLink@@ OpenClipboard


###Example###
@@IncludeExample@@
