GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoView Class / EditCopy Method
In This Topic
    EditCopy Method
    In This Topic
    Copy the Selection to the clipboard.
    Syntax
    public virtual void EditCopy()
    Remarks

    This method does nothing if CanCopyObjects is false. After calling CopyToClipboard, this calls RaiseClipboardCopied. All the actions occur within a transaction.

    All of the objects in the selection will be copied by serializing them. If any of the objects, or any of the objects that they refer to, are not serializable, there will be a serialization exception, and the clipboard might not a copy of the selection. CopyToClipboard will log any exceptions to any trace listeners. The User Guide discusses serialization and deserialization in more detail.

    See Also