| ST7735AutoUpdate Property |
Gets or sets a value that indicates if
Update should automatically be called
after drawing operations.
Namespace: Microsoft.IoT.Devices.DisplayAssembly: Microsoft.IoT.Devices (in Microsoft.IoT.Devices.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public bool AutoUpdate { get; set; }
Public Property AutoUpdate As Boolean
Get
Set
public:
virtual property bool AutoUpdate {
bool get () sealed;
void set (bool value) sealed;
}
abstract AutoUpdate : bool with get, set
override AutoUpdate : bool with get, set
Property Value
Type:
Booleantrue if
Update should automatically be called
after drawing operations; otherwise false. The default is
true.
Implements
IGraphicsDisplayAutoUpdateRemarks
This property can be set to false to have more fine grained control over
how many drawing operations are batched before they are sent to the display.
See Also