IEnumCERTVIEWCOLUMN::Clone

[This is preliminary documentation and subject to change.]

The Clone method creates a copy of the IEnumCERTVIEWCOLUMN object in its current state.

[VB] CEnumCERTVIEWCOLUMN Clone();
 
[JAVA] CEnumCERTVIEWCOLUMN Clone();
 
[C++] HRESULT Clone(
  IEnumCERTVIEWCOLUMN **ppenum  // out
);
 

Parameters

[C++] ppenum
Points to a pointer of IEnumCERTVIEWCOLUMN type; upon successful completion of this function, ppenum will point to the cloned object. This function will fail if ppenum is NULL.

Return Values

[VB][JAVA] The return value is a cloned IEnumCERTVIEWCOLUMN object.

[C++] The return value is an HRESULT. A value of S_OK indicates success.

Remarks

This function is used to clone the IEnumCERTVIEWCOLUMN object.

Example

// pEnumCol is previously instantiated IEnumCERTVIEWColumn object
IEnumCERTVIEWCOLUMN *    pEnumCol2 = NULL;
HRESULT    hr;
hr = pEnumCol->Clone( &pEnumCol2 );
if ( S_OK != hr )
    printf("Unable to clone IEnumCERTVIEWCOLUMN\n");
else
    // use cloned object as needed
    …
// done using cloned object, free memory
if ( NULL != pEnumCol2 )
    pEnumCol2->Release();
 

QuickInfo

  Windows NT: Requires version 5.0 or later.
  Windows: Unsupported.
  Windows CE: Unsupported.
  Header: Declared in certview.h.
  Import Library: Use certidl.lib.