Search
FlowChart.ClipboardFlags Property
See Also
 



( a feature of FlowChartX Pro edition)

An indexed property allowing customization of clipboard operations.

 Syntax

VB6  Copy Code

Public Property Get ClipboardFlags( _
    ByVal flag As EClipboardFlag _
) As Boolean
Public Property Let ClipboardFlags( _
    ByVal flag As EClipboardFlag, _
    ByVal Value As Boolean _
)

C++  Copy Code

public:
bool get_ClipboardFlags (
    EClipboardFlag flag
)
void put_ClipboardFlags (
    EClipboardFlag flag,
    bool value
)

 Parameters

flag
The flag to get or set.

 Property Value

A boolean value.

 Remarks

Represents a bit-mask that allows changing some aspects of clipboard operations. The property is indexed via EClipboardFlag enumeration members. The following flags are available:

Flag

Default value

Description

fCopyAsBitmap

true

In addition to copying FlowChartX items in native format, copy the whole diagram to the clipboard in a bitmap format.

fCopyAsEnhancedMetafile

true

In addition to copying FlowChartX items in native format, copy the whole diagram to the clipboard in an enhanced-metafile format.

fCopySubordinateGroups

false

If a selected item has subordinate group of items, copy the whole group to the clipboard.

 See Also