ImageEn, unit imageenview

TIEHoverHint

TIEHoverHint

Declaration

TIEHoverHint = (iehhNone, iehhPosition, iehhRGB, iehhRGBA, iehhAlpha, iehhTreatAsAlpha);

Description

Value Description Example
iehhNone No hover hint is displayed ''
iehhPosition Shows the cursor position (in bitmap pixels) 'XY: 123,456'
iehhRGB Shows the position and color of the pixel under the cursor 'XY: 123,456 - RGB: 255,23,111'
iehhRGBA Shows the position, color and alpha of the pixel under the cursor 'XY: 123,456 - RGB: 255,23,111 - Alpha: 255'
iehhAlpha Shows the alpha value of the pixel under the cursor 'XY: 123,456 - Alpha: 255'
iehhTreatAsAlpha Assumes the control is being used to display the alpha channel only so treats the gray-scale color as an alpha value 'XY: 123,456 - Alpha: 255'

Note: "Color" under the cursor is PixelFormat aware, i.e. for iehhRGBA:
ie1g: XY: 123,456 - Monochrome: 1 - Alpha: 255
ie8g: XY: 123,456 - Gray: 255 - Alpha: 255
ie32RGB: XY: 123,456 - RGBA: 255,23,111,0 - Alpha: 255
Others: XY: 123,456 - RGB: 255,23,111 - Alpha: 255