Graphics.Flush Méthode

Définition

Force l'exécution de toutes les opérations graphiques en attente et procède à un retour immédiat, sans attendre la fin des opérations.

Surcharges

Flush()

Force l'exécution de toutes les opérations graphiques en attente et procède à un retour immédiat, sans attendre la fin des opérations.

Flush(FlushIntention)

Force l'exécution de toutes les opérations graphiques en attente, la méthode procédant à un retour immédiat ou attendant, selon ce qui est spécifié, la fin des opérations.

Flush()

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

Force l'exécution de toutes les opérations graphiques en attente et procède à un retour immédiat, sans attendre la fin des opérations.

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

Remarques

Cette méthode démarre un vidage et retourne immédiatement sans attendre la fin de l’opération graphique en cours d’exécution.

S’applique à

Flush(FlushIntention)

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

Force l'exécution de toutes les opérations graphiques en attente, la méthode procédant à un retour immédiat ou attendant, selon ce qui est spécifié, la fin des opérations.

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)

Paramètres

intention
FlushIntention

Membre de l'énumération FlushIntention qui spécifie si la méthode procède à un retour immédiat ou attend la fin des opérations existantes.

Remarques

Une valeur de Flush pour le intention paramètre spécifie que la méthode retourne immédiatement après le début du vidage, tandis qu’une valeur de Sync spécifie que la méthode attend avant de retourner jusqu’à ce que les opérations existantes se terminent.

S’applique à