PathPointType Enumeración
Definición
Especifica el tipo de punto de un objeto GraphicsPath.Specifies the type of point in a GraphicsPath object.
public enum class PathPointType
public enum PathPointType
type PathPointType =
Public Enum PathPointType
- Herencia
Campos
Bezier | 3 | Curva de Bézier predeterminada.A default Bézier curve. |
Bezier3 | 3 | Curva de Bézier cúbica.A cubic Bézier curve. |
CloseSubpath | 128 | Extremo de un subtrazado.The endpoint of a subpath. |
DashMode | 16 | El segmento correspondiente es discontinuo.The corresponding segment is dashed. |
Line | 1 | Segmento de línea.A line segment. |
PathMarker | 32 | Marcador de trazado.A path marker. |
PathTypeMask | 7 | Punto de máscara.A mask point. |
Start | 0 | Punto inicial de un objeto GraphicsPath.The starting point of a GraphicsPath object. |
Comentarios
Cada punto de un GraphicsPath objeto tiene un tipo asociado.Each point in a GraphicsPath object has a type associated with it. El tipo determina cómo se utiliza el punto para dibujar el trazado.The type determines how the point is used to draw the path. Los tipos de punto que forman formas incluyen los puntos de inicio, los puntos de detención y los puntos de curva de Bézier.Point types that make up shapes include start points, stop points, and Bézier curve points. Los tipos también incluyen marcadores, que permiten un recorrido sencillo de una ruta de acceso o una máscara para mostrar u ocultar puntos.Types also include markers, which allow easy traversal of a path or a mask to show or hide points. El tipo de línea y cualquiera de los tipos de Bézier se pueden combinar con CloseSubpath (mediante el operador OR
bit a bit) para indicar que el punto correspondiente es el último punto de una figura y que la figura debe cerrarse.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.