[This is preliminary documentation and is subject to change.]

pastes keywords form clipboard to editor

Namespace: Tools.WindowsT.FormsT
Assembly: Tools.Windows (in Tools.Windows.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
public bool Paste(
	bool SuppressMessageBoxes
)
Visual Basic
Public Function Paste ( _
	SuppressMessageBoxes As Boolean _
) As Boolean
Visual C++
public:
bool Paste(
	bool SuppressMessageBoxes
)
F#
member Paste : 
        SuppressMessageBoxes:bool -> bool 
JScript
public function Paste(
	SuppressMessageBoxes : boolean
) : boolean

Parameters

SuppressMessageBoxes
Type: System..::..Boolean
True not to show any messages to the ueser (if false user may be promped when pasting more than 50 keywords or when any signgle keyword (line in text) is longer than 32 characters)

Return Value

True if any keyword was added. False may be returned due empy clipboard, incompatible data in clipboard, user revocation or because all keywords wa already in list. Lines are separated by NewLine - any other separator causes improperly separated keywords to be pasted.

Remarks

KeyWordsEditor uses clipboard format UnicodeText - one keyword on line

See Also