System.Drawing.Size.Ceiling C# (CSharp) Méthode

Ceiling() public static méthode

Converts a SizeF to a Size by performing a ceiling operation on all the coordinates.
public static Ceiling ( SizeF value ) : Size
value SizeF
Résultat Size
        public static Size Ceiling(SizeF value) => new Size((int)Math.Ceiling(value.Width), (int)Math.Ceiling(value.Height));

Same methods

Size::Ceiling ( System value ) : System.Drawing.Size