ToolStripDropDownManager ProcessMessage Method (String, String)CleanCode C# Libraries v1.2.03 API
Adds a message to the targeted OnlineToolStripDropDownButton.

Namespace: CleanCode.Forms
Assembly: CleanCode (in CleanCode.dll) Version: 1.2.3.0 (1.2.03)
Syntax

protected override void ProcessMessage(
	string message,
	string prefix
)
Remarks

If a prefix is provided, the message is not only added to the visible label of the Control, but it is also adorned (see below) and stored in the history list of the Control. The value is added "as is" to the visible portion of the statusDisplay drop down button. For the entry into the history (the drop-down portion of the control), the line is formatted as:
date/time category prefix value
The category comes from the Control provided to the constructor, if any. The prefix may be also be used for categorization if you wish. The Error(String) and Warning(String) methods use this field to designate errors and warnings, for example.
See Also