Graphics.Flush 方法

定义

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

重载

名称 说明
Flush()

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

Flush(FlushIntention)

强制执行所有挂起的图形操作,方法等待或未等待(如指定)以在操作完成之前返回。

Flush()

Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs
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
Source:
Graphics.cs
Source:
Graphics.cs
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 ,指定该方法是立即返回还是等待任何现有操作完成。

注解

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

适用于