CGXGridCore::OnCheckClipboardFormat
virtual BOOL OnCheckClipboardFormat( );
Return Value
TRUE if clipboard format is supported; otherwise FALSE.
Remarks
Determines if cells can be pasted from the clipboard. The base-class version supports both CF_TEXT and internal format. Override this method if you want to support additional clipboard formats.
The method will be called from CGXGridCore::CanPaste after the clipboard has been opened.
Control-Factory Specific ->
This method has been implemented using the abstraction mechanism as discussed in the chapter "Reducing the size of your application" in the user's guide. A call to the ImplementCutPaste method from within the control factory class' InitializeGridComponents method will make the concrete implementation of this method available to your application.
If no concrete implementation is available this method returns FALSE. A warning will be displayed in the debug window.
END Control-Factory Specific