/* Cropping.cs $ This file is part of the HandBrake source code. Homepage: . It may be used under the terms of the GNU General Public License. */ namespace HandBrake.ApplicationServices.Model { /// /// Cropping T B L R /// public class Cropping { /// /// Gets or sets Top. /// public int Top { get; set; } /// /// Gets or sets Bottom. /// public int Bottom { get; set; } /// /// Gets or sets Left. /// public int Left { get; set; } /// /// Gets or sets Right. /// public int Right { get; set; } /// /// Create a cropping object /// /// /// The top. /// /// /// The bottom. /// /// /// The left. /// /// /// The right. /// /// /// A Cropping object /// public static Cropping CreateCroppingObject(int top, int bottom, int left, int right) { return new Cropping { Top = top, Bottom = bottom, Left = left, Right = right }; } } }