GraphicsPathIterator.HasCurve Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Indica se o caminho associado a esse GraphicsPathIterator contém uma curva.
public:
bool HasCurve();
public bool HasCurve ();
member this.HasCurve : unit -> bool
Public Function HasCurve () As Boolean
Retornos
Esse método retornará true
se o subcaminho atual contiver uma curva; caso contrário, false
.
Exemplos
O exemplo a seguir foi projetado para uso com o Windows Forms e requer PaintEventArgse
, um objeto de evento OnPaint. O código executa as seguintes ações:
Cria um objeto GraphicsPath,
myPath
.Adiciona três linhas, um retângulo e uma elipse.
Cria um objeto GraphicsPathIterator para
myPath
.Testa para ver se o caminho atual
myPath
contém uma curva.Mostra o resultado do teste em uma caixa de mensagem.
private:
void HasCurveExample( PaintEventArgs^ /*e*/ )
{
// Create a path and add three lines,
// a rectangle and an ellipse.
GraphicsPath^ myPath = gcnew GraphicsPath;
array<Point>^ myPoints = {Point(20,20),Point(120,120),Point(20,120),Point(20,20)};
Rectangle myRect = Rectangle(120,120,100,100);
myPath->AddLines( myPoints );
myPath->AddRectangle( myRect );
myPath->AddEllipse( 220, 220, 100, 100 );
// Create a GraphicsPathIterator for myPath.
GraphicsPathIterator^ myPathIterator = gcnew GraphicsPathIterator( myPath );
// Test for a curve.
bool myHasCurve = myPathIterator->HasCurve();
// Show the test result.
MessageBox::Show( myHasCurve.ToString() );
}
private void HasCurveExample(PaintEventArgs e)
{
// Create a path and add three lines,
// a rectangle and an ellipse.
GraphicsPath myPath = new GraphicsPath();
Point[] myPoints = {new Point(20, 20), new Point(120, 120),
new Point(20, 120),new Point(20, 20) };
Rectangle myRect = new Rectangle(120, 120, 100, 100);
myPath.AddLines(myPoints);
myPath.AddRectangle(myRect);
myPath.AddEllipse(220, 220, 100, 100);
// Create a GraphicsPathIterator for myPath.
GraphicsPathIterator myPathIterator = new
GraphicsPathIterator(myPath);
// Test for a curve.
bool myHasCurve = myPathIterator.HasCurve();
// Show the test result.
MessageBox.Show(myHasCurve.ToString());
}
Public Sub HasCurveExample(ByVal e As PaintEventArgs)
Dim myPath As New GraphicsPath
Dim myPoints As Point() = {New Point(20, 20), _
New Point(120, 120), New Point(20, 120), New Point(20, 20)}
Dim myRect As New Rectangle(120, 120, 100, 100)
myPath.AddLines(myPoints)
myPath.AddRectangle(myRect)
myPath.AddEllipse(220, 220, 100, 100)
' Create a GraphicsPathIterator for myPath.
Dim myPathIterator As New GraphicsPathIterator(myPath)
Dim myHasCurve As Boolean = myPathIterator.HasCurve()
MessageBox.Show(myHasCurve.ToString())
End Sub
Comentários
Todas as curvas em um caminho são armazenadas como sequências de splines Bézier. Por exemplo, ao adicionar uma elipse a um caminho, especifique o canto superior esquerdo, a largura e a altura do retângulo delimitador da elipse. Esses números (canto superior esquerdo, largura e altura) não são armazenados no caminho; em vez de; a elipse é convertida em uma sequência de quatro splines Bézier. O caminho armazena os pontos de extremidade e os pontos de controle desses splines Bézier.
Um caminho armazena uma matriz de pontos de dados, cada um deles pertence a uma linha ou a uma spline Bézier. Se alguns dos pontos na matriz pertencerem a splines de Bézier, HasCurve retornará true
. Se todos os pontos na matriz pertencerem a linhas, HasCurve retornará false
.
Determinados métodos nivelam um caminho, o que significa que todas as curvas no caminho são convertidas em sequências de linhas. Depois que um caminho for mesclado, HasCurve sempre retornará false
. Chamar o método Flatten, Widenou Warp da classe GraphicsPath achatará um caminho.