位置:首頁 > Java技術 > AWT > AWT PaintEvent類

AWT PaintEvent類

介紹

類的paintEvent使用,以確保paint/update方法的調用序列與其他事件從事件隊列傳遞

類的聲明

以下是聲明的java.awt.event.PaintEvent類:

public class PaintEvent
   extends ComponentEvent

字段域

以下是java.awt.Component 類的字段:

  • static int PAINT -- 事件類型。

  • static int PAINT_FIRST -- 標誌著第一個整數標識符paint 的事件ID的範圍

  • static int PAINT_LAST -- 標記paint 事件的id範圍的最後一個整數ID。

  • static int UPDATE -- 更新事件類型。

類的構造函數

S.N. 構造函數&說明
1 PaintEvent(Component source, int id, Rectangle updateRect)
Constructs a PaintEvent object with the specified source component and type.

類方法

S.N. 方法&說明
1 Rectangle getUpdateRect() 
Returns the rectangle representing the area which needs to be repainted in response to this event.
2 String paramString()
Returns a parameter string identifying this event.
3 void setUpdateRect(Rectangle updateRect) 
Sets the rectangle representing the area which needs to be repainted in response to this event.

繼承的方法

這個類繼承的方法從以下類:

  • java.awt.ComponentEvent

  • java.awt.AWTEvent

  • java.util.EventObject

  • java.lang.Object