Table of Contents

Enum ControlRefreshOptions

Namespace
Alternet.UI
Assembly
Alternet.UI.Interfaces.dll

Defines how to refresh control after its visual state is changed.

[Flags]
public enum ControlRefreshOptions : ulong

Fields

None = 0

Do not refresh.

RefreshOnBackground = 4

Specifies whether to refresh control after its visual state is changed. Control is refreshed only if it has different backgrounds specified in the state objects.

RefreshOnBorder = 1

Specifies whether to refresh control after its visual state is changed. Control is refreshed only if it has different borders specified in the state objects.

RefreshOnColor = 8

Specifies whether to refresh control after its visual state is changed. Control is refreshed only if it has different colors specified in the state objects.

RefreshOnImage = 2

Specifies whether to refresh control after its visual state is changed. Control is refreshed only if it has different images specified in the state objects.

RefreshOnState = 16

Specifies whether to refresh control after its visual state is changed.

Remarks

This enumeration supports a bitwise combination of its member values.