Graphics.Flush 方法

定义

强制执行所有挂起的图形操作并立即返回而不等待操作完成。

重载

Flush()

强制执行所有挂起的图形操作并立即返回而不等待操作完成。

Flush(FlushIntention)

用此方法强制执行所有挂起的图形操作,按照指定,等待或者不等待,在操作完成之前返回。

Flush()

Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs

强制执行所有挂起的图形操作并立即返回而不等待操作完成。

public:
 void Flush();
public void Flush ();
member this.Flush : unit -> unit
Public Sub Flush ()

注解

此方法启动刷新并立即返回,而无需等待当前正在执行的任何图形操作完成。

适用于

Flush(FlushIntention)

Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs

用此方法强制执行所有挂起的图形操作,按照指定,等待或者不等待,在操作完成之前返回。

public:
 void Flush(System::Drawing::Drawing2D::FlushIntention intention);
public void Flush (System.Drawing.Drawing2D.FlushIntention intention);
member this.Flush : System.Drawing.Drawing2D.FlushIntention -> unit
Public Sub Flush (intention As FlushIntention)

参数

intention
FlushIntention

FlushIntention 枚举的成员,它指定该方法是立即返回还是等待所有现有的操作都完成。

注解

参数的 intentionFlush指定方法在开始刷新后立即返回,而 值 Sync 指定方法在返回之前等待,直到任何现有操作完成。

适用于