다음을 통해 공유


InkWordNode.GetDescender 메서드

업데이트: 2007년 11월

InkWordNode 개체에 대한 디센더 선을 반환합니다.

네임스페이스:  Microsoft.Ink
어셈블리:  Microsoft.Ink.Analysis(Microsoft.Ink.Analysis.dll)

구문

‘선언
Public Function GetDescender As Point()
‘사용 방법
Dim instance As InkWordNode
Dim returnValue As Point()

returnValue = instance.GetDescender()
public Point[] GetDescender()
public:
array<Point>^ GetDescender()
public Point[] GetDescender()
public function GetDescender() : Point[]

반환 값

형식: array<System.Drawing.Point[]
InkWordNode 개체에 대한 디센더 선을 반환합니다.

설명

서양 언어의 경우 디센더는 소문자에서 기준선 아래로 그려지는 부분입니다. 예를 들어 문자 "p"에서 원의 가장 아래 부분 아래로 그려지는 수직선입니다. 디센더 선은 디센더 아래쪽의 가상 가로줄입니다.

예제

다음 예제에서는 Renderer 개체인 theRenderer 및 Panel에서 만든 Graphics 개체인 panelGraphics를 사용하여 InkWordNode인 inkWord의 디센더 선을 그립니다.

Dim descenderPoints As Point() = inkWord.GetDescender()
' Convert to pixel coordinates
theRenderer.InkSpaceToPixel(panelGraphics, descenderPoints)
panelGraphics.DrawLines(New Pen(Color.Yellow), descenderPoints)
                Point[] descenderPoints = inkWord.GetDescender();
                // Convert to pixel coordinates
                theRenderer.InkSpaceToPixel(panelGraphics, ref descenderPoints);
                panelGraphics.DrawLines(new Pen(Color.Yellow), descenderPoints);

플랫폼

Windows Vista

.NET Framework 및 .NET Compact Framework에서 모든 플랫폼의 전체 버전을 지원하지는 않습니다. 지원되는 버전의 목록을 보려면 .NET Framework 시스템 요구 사항을 참조하십시오.

버전 정보

.NET Framework

3.0에서 지원

참고 항목

참조

InkWordNode 클래스

InkWordNode 멤버

Microsoft.Ink 네임스페이스

GetAscender

GetBaseline

GetMidline