Search
Graphics.AntiAliasing Property
See Also
 



Gets or sets a value specifying whether to smooth lines and curves via anti-aliasing.

 Syntax

VB6  Copy Code

Public Property Get AntiAliasing() As Boolean
Public Property Let AntiAliasing( _
    ByVal value As Boolean _
)

C++  Copy Code

public:
bool get_AntiAliasing ()
void put_AntiAliasing (
    bool value
)

 Property Value

A boolean value. The default is true.

 Remarks

Anti-aliasing is supported only by the GDI+ graphics engine. Drawing is about four times slower when this property is enabled.

 See Also