/// /// Checks to see if the data on the clipboard supports /// the given data type. /// /// The data type to check for. /// true if the data type is present. /// /// public bool ClipboardDataHasType(string dataType) /// /// string public bool ClipboardDataHasType(string dataType) { return dataType == m_dataType; } /// /// Gets the clipboard data. /// /// Type of the data. /// /// The data on the clipboard matching the datatype /// /// /// public object GetClipboardData(string dataType) /// /// string public object GetClipboardData(string dataType)