ShapeGeometry.GetPath 메서드 (RectangleD)
셰이프 기 하 도형 중심의 경로 가져옵니다.
네임스페이스: Microsoft.VisualStudio.Modeling.Diagrams
어셈블리: Microsoft.VisualStudio.Modeling.Sdk.Diagrams.11.0(Microsoft.VisualStudio.Modeling.Sdk.Diagrams.11.0.dll)
구문
‘선언
Protected Overridable Function GetPath ( _
boundingBox As RectangleD _
) As GraphicsPath
protected virtual GraphicsPath GetPath(
RectangleD boundingBox
)
매개 변수
- boundingBox
형식: Microsoft.VisualStudio.Modeling.Diagrams.RectangleD
셰이프 또는 셰이프 부모의 왼쪽 위 모서리를 기준으로 링크에 대 한 경계 상자입니다.
반환 값
형식: System.Drawing.Drawing2D.GraphicsPath
셰이프 기 하 도형 주위에 대 한 경로입니다.
설명
이 속성이이 형상에 의해 사용 되는 경로 대 한 참조를 반환 합니다.제거 하지 않습니다.경로 사용 하기 전에 사용 하 여 GetPath() 다시.복사본이 필요 하면 사용 GetPathCopy.
예제
이 예제에 대 한 원형 모양입니다.알 UninitializedPath 사용 하 고 다시 설정 됩니다.
/// <summary>
/// Gets the GraphicsPath of the geometry.
/// Returns a reference to the path - do not dispose it.
/// </summary>
/// <param name="boundingBox">The bounding box of the shape.</param>
/// <returns>The GraphicsPath of the geometry.</returns>
protected override GraphicsPath GetPath(RectangleD boundingBox)
{
GraphicsPath path = UninitializedPath;
path.Reset();
path.AddEllipse((float)boundingBox.X, (float)boundingBox.Y, (float)boundingBox.Width, (float)boundingBox.Height);
return path;
}
.NET Framework 보안
- 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용을 참조하십시오.