All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.adobe.xfa.text.DispRect Maven / Gradle / Ivy

There is a newer version: 2024.11.18751.20241128T090041Z-241100
Show newest version
package com.adobe.xfa.text;

/*
 * @exclude from published api.
 */

class DispRect {
	float xMin;
	float yMin;
	float xMax;
	float yMax;

	DispRect () {
	}

	DispRect (DispRect source) {
		xMin = source.xMin;
		yMin = source.yMin;
		xMax = source.xMax;
		yMax = source.yMax;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy