Home | History | Annotate | Download | only in api

Lines Matching refs:top

23  * Set of margins - distances to outer left, top, right and bottom edges. These objects
38 /** The top margin */
39 public final int top;
49 * @param top the top margin
52 public Margins(int left, int right, int top, int bottom) {
56 this.top = top;
63 return "Margins [left=" + left + ", right=" + right + ", top=" + top + ", bottom=" + bottom