Developer

TNxDrawingOptions

Specifies drawing flags.

Unit: NxTypes6.pas (Sources)

TNxDrawingOptions = set of (doBackground, doContent, doCustom);



Values
ValueMeaning
doBackgroundBackground of item (or cell) will be painted by control itself. Omit this flag if you need to paint background in different style than default one (e.g. Gradient, Pattern etc.).
doContentContent of item (or cell) will be painted by control itself. Omit this flag to skip default drawing by control.
doCustomDeveloper can provide own (custom) drawing via event. Which event need to be used differ from specific control.

Example:


NextGrid61.Columns[2].DrawingOptions := [doBackground, doCustom];

See also