DisabledBackColor, DisabledForeColor
These properties determine the appearance of a control when it's disabled (that is, when its Enabled property is .F.).
Usage |
oObject.DisabledBackColor = nColor nColor = oObject.DisabledBackColor oObject.DisabledForeColor = nColor nColor = oObject.DisabledForeColor |
Example |
* match an object's disabled colors to its regular colors * with the dithering of the forecolor, this should result * in the back remaining the same and the lettering dimming * for those controls so affected. This.DisabledBackColor = This.BackColor This.DisabledForeColor = This.ForeColor |
See Also |
BackColor, DisabledItemBackColor, DisabledItemForeColor, ForeColor, GetColor(), RGB() |