共用方式為


PathPointType 列舉 (gdiplusenums.h)

PathPointType列舉指出路徑中資料點的點類型和旗標。 位 0 到 2 表示點的類型,而位 3 到 7 會保存一組指定點屬性的旗標。 此列舉是由GraphicsPath、GraphicsPathIteratorPathData類別使用。

Syntax

typedef enum PathPointType {
  PathPointTypeStart = 0,
  PathPointTypeLine = 1,
  PathPointTypeBezier = 3,
  PathPointTypePathTypeMask = 0x07,
  PathPointTypeDashMode = 0x10,
  PathPointTypePathMarker = 0x20,
  PathPointTypeCloseSubpath = 0x80,
  PathPointTypeBezier3 = 3
} ;

常數

 
PathPointTypeStart
值: 0
表示點是圖的起點。
PathPointTypeLine
值: 1
表示點是一行兩個端點的其中一個。
PathPointTypeBezier
值: 3
表示點是立方貝茲曲線的端點或控制點。
PathPointTypePathTypeMask
值: 0x07
遮罩三個低序位以外的所有位,這表示點類型。
PathPointTypeDashMode
值: 0x10
未使用。
PathPointTypePathMarker
值: 0x20
指定點為標記。
PathPointTypeCloseSubpath
值: 0x80
指定點是關閉子路徑中的最後一個點, (圖) 。
PathPointTypeBezier3
值: 3
表示點是立方貝茲曲線的端點或控制點。

備註

GraphicsPath物件具有點陣列和類型的陣列。 型別陣列中的每個元素都是位元組,指定點類型,以及點陣列中對應元素的一組旗標。

需求

   
最低支援的用戶端 Windows XP、Windows 2000 Professional [僅限傳統型應用程式]
最低支援的伺服器 Windows 2000 Server [僅限傳統型應用程式]
標頭 gdiplusenums.h (包含 Gdiplus.h)

另請參閱

GraphicsPath

GraphicsPathIterator

PathData