C# 클래스 SFML.Window.VideoMode

파일 보기 프로젝트 열기: SFML/SFML.Net 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
BitsPerPixel uint
Height uint
Width uint

공개 메소드들

메소드 설명
IsValid ( ) : bool

Tell whether or not the video mode is supported

ToString ( ) : string

Provide a string describing the object

VideoMode ( uint width, uint height ) : System.Runtime.InteropServices

Construct the video mode with its width and height

VideoMode ( uint width, uint height, uint bpp ) : System.Runtime.InteropServices

Construct the video mode with its width, height and depth

비공개 메소드들

메소드 설명
sfVideoMode_getDesktopMode ( ) : VideoMode
sfVideoMode_getFullscreenModes ( uint &Count ) : VideoMode*
sfVideoMode_isValid ( VideoMode Mode ) : bool

메소드 상세

IsValid() 공개 메소드

Tell whether or not the video mode is supported
public IsValid ( ) : bool
리턴 bool

ToString() 공개 메소드

Provide a string describing the object
public ToString ( ) : string
리턴 string

VideoMode() 공개 메소드

Construct the video mode with its width and height
public VideoMode ( uint width, uint height ) : System.Runtime.InteropServices
width uint Video mode width
height uint Video mode height
리턴 System.Runtime.InteropServices

VideoMode() 공개 메소드

Construct the video mode with its width, height and depth
public VideoMode ( uint width, uint height, uint bpp ) : System.Runtime.InteropServices
width uint Video mode width
height uint Video mode height
bpp uint Video mode depth (bits per pixel)
리턴 System.Runtime.InteropServices

프로퍼티 상세

BitsPerPixel 공개적으로 프로퍼티

Video mode depth, in bits per pixel
public uint BitsPerPixel
리턴 uint

Height 공개적으로 프로퍼티

Video mode height, in pixels
public uint Height
리턴 uint

Width 공개적으로 프로퍼티

Video mode width, in pixels
public uint Width
리턴 uint