C# 클래스 SharpHelper.Sharp2D

Permit to draw font
상속: IDisposable
파일 보기 프로젝트 열기: RobyDX/SharpDX_Demo 1 사용 예제들

공개 메소드들

메소드 설명
Begin ( ) : void

Begin a 2D drawing session

Dispose ( ) : void

Dispose

DrawString ( string text, int x, int y, int width = 800, int height = 600 ) : void

Draw text

End ( ) : void

End drawing session

SetFont ( Color fontColor, string fontName, int fontSize ) : void

Set font parameters

비공개 메소드들

메소드 설명
InitFont ( ) : void
Release ( ) : void

Release all resources

Sharp2D ( SharpDevice device ) : System

Create a batch manager for drawing text and sprite

UpdateResources ( SharpDX backBuffer ) : void

Update all resources

메소드 상세

Begin() 공개 메소드

Begin a 2D drawing session
public Begin ( ) : void
리턴 void

Dispose() 공개 메소드

Dispose
public Dispose ( ) : void
리턴 void

DrawString() 공개 메소드

Draw text
public DrawString ( string text, int x, int y, int width = 800, int height = 600 ) : void
text string Text
x int Left position
y int Top position
width int Max width
height int Max heigh
리턴 void

End() 공개 메소드

End drawing session
public End ( ) : void
리턴 void

SetFont() 공개 메소드

Set font parameters
public SetFont ( Color fontColor, string fontName, int fontSize ) : void
fontColor Color Font Color
fontName string Font Name
fontSize int Font Size
리턴 void