Example usage for org.apache.poi.ss.usermodel Comment getColumn

List of usage examples for org.apache.poi.ss.usermodel Comment getColumn

Introduction

In this page you can find the example usage for org.apache.poi.ss.usermodel Comment getColumn.

Prototype

int getColumn();

Source Link

Document

Return the column of the cell that contains the comment

Usage

From source file:de.enerko.reports2.engine.CommentDefinition.java

License:Apache License

public CommentDefinition(final Comment comment) {
    this(comment.getString().getString(), comment.getAuthor(), comment.getColumn(), comment.getRow(), -1, -1,
            comment.isVisible());//  w  w  w .  j a  v a  2 s .  c om
}