PathPointType Enumeração
Definição
Especifica o tipo de ponto em um objeto GraphicsPath.Specifies the type of point in a GraphicsPath object.
public enum class PathPointType
public enum PathPointType
type PathPointType =
Public Enum PathPointType
- Herança
Campos
| Bezier | 3 | Uma curva de Bézier padrão.A default Bézier curve. |
| Bezier3 | 3 | Uma curva de Bézier cúbica.A cubic Bézier curve. |
| CloseSubpath | 128 | O ponto de extremidade de um subcaminho.The endpoint of a subpath. |
| DashMode | 16 | O segmento correspondente é tracejado.The corresponding segment is dashed. |
| Line | 1 | Um segmento de linha.A line segment. |
| PathMarker | 32 | Um marcador de caminho.A path marker. |
| PathTypeMask | 7 | Um ponto de máscara.A mask point. |
| Start | 0 | O ponto de partida de um objeto GraphicsPath.The starting point of a GraphicsPath object. |
Comentários
Cada ponto em um GraphicsPath objeto tem um tipo associado a ele.Each point in a GraphicsPath object has a type associated with it. O tipo determina como o ponto é usado para desenhar o caminho.The type determines how the point is used to draw the path. Os tipos de ponto que compõem formas incluem pontos de partida, pontos de interrupção e pontos de curva de Bézier.Point types that make up shapes include start points, stop points, and Bézier curve points. Os tipos também incluem marcadores, que permitem a passagem fácil de um caminho ou de uma máscara para mostrar ou ocultar pontos.Types also include markers, which allow easy traversal of a path or a mask to show or hide points. O tipo de linha e qualquer um dos tipos de Bézier podem ser combinados com CloseSubpath (usando o operador bit a bit OR ) para indicar que o ponto correspondente é o último ponto em uma figura e que a figura deve ser fechada.The Line type and any of the Bezier types can be combined with CloseSubpath (by using the bitwise operator OR) to indicate that the corresponding point is the last point in a figure and that the figure should be closed.