Truncate() 공개 정적인 메소드

Converts a SizeF to a Size by performing a truncate operation on all the coordinates.
public static Truncate ( SizeF value ) : Size
value SizeF
리턴 Size
예제 #1
0
파일: SizeF.cs 프로젝트: dca-davi/corefx
 public Size ToSize()
 {
     return(Size.Truncate(this));
 }
예제 #2
0
 public Size ToSize() => Size.Truncate(this);
예제 #3
0
 public Size ToSize() => Size.Truncate((SizeF)this);