Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Description

Excerpt

Creates a CopyPasteProperties object with the specified data type properties set.

Signature
C#
C#
 public CopyPasteProperties CreateCopyPasteProperties(CopyPasteType typeMask)
Signature
vb.net
vb.net
Public Function CreateCopyPasteProperties(ByVal typeMask As CopyPasteType) As CopyPasteProperties
Parameters
Param
typeMask
typeMask

A CopyPasteProperties constant value indicating the types of data to copy from an external worksheet.

Returns

A CopyPasteProperties object.

Remarks

This object is used when copying data from an external worksheet.

Used with the Worksheet.CopyPaste method of the Worksheet.

Example
Code Block
csharp
csharp
titleC#

          CopyPasteProperties properties =
               ws.CreateCopyPasteProperties(
               CopyPasteProperties.ValuesOnly);
        
Code Block
vb.net
vb.net
titlevb.net

          Dim properties As CopyPasteProperties = _
               ws.CreateCopyPasteProperties( _
               CopyPasteProperties.ValuesOnly)