com.vaadin.flow.component.spreadsheet.client.OverlayInfo Maven / Gradle / Ivy
package com.vaadin.flow.component.spreadsheet.client;
/**
* Copyright (C) 2000-2022 Vaadin Ltd
*
* This program is available under Vaadin Commercial License and Service Terms.
*
*
* See for the full
* license.
*/
import java.io.Serializable;
@SuppressWarnings("serial")
public class OverlayInfo implements Serializable {
public enum Type {
IMAGE, COMPONENT
};
public OverlayInfo() {
}
public OverlayInfo(Type t) {
type = t;
}
public Type type = Type.IMAGE;
public int col;
public int row;
public float width;
public float height;
public float dy;
public float dx;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy