The FlushIntention enumeration specifies when to flush the queue of graphics operations.
C++ Syntax
typedef enum {
FlushIntentionFlush = 0,
FlushIntentionSync = 1
} FlushIntention;
FreeBASIC 语法
enum
FlushIntentionFlush = 0
FlushIntentionSync = 1
end enum
常数
FlushIntentionFlush
When passed to the GdipFlush function, specifies that pending rendering operations are executed as soon as possible. The GdipFlush function is not synchronized with the completion of the rendering operations and might return before the rendering operations are completed.
FlushIntentionSync
When passed to the GdipFlush function, specifies that pending rendering operations are executed as soon as possible. The GdipFlush function is synchronized with the completion of the rendering operations; that is, it will not return until after the rendering operations are completed.