Searched defs:verticalDpi (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/print/
H A DPrintAttributes.java1085 * @param verticalDpi The vertical resolution in DPI (dots per inch).
1088 * or the horizontalDpi is less than or equal to zero or the verticalDpi is
1092 @IntRange(from = 1) int horizontalDpi, @IntRange(from = 1) int verticalDpi) {
1103 if (verticalDpi <= 0) {
1104 throw new IllegalArgumentException("verticalDpi"
1110 mVerticalDpi = verticalDpi;
1206 builder.append(", verticalDpi: ").append(mVerticalDpi);
1091 Resolution(@onNull String id, @NonNull String label, @IntRange(from = 1) int horizontalDpi, @IntRange(from = 1) int verticalDpi) argument

Completed in 338 milliseconds