1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
package Spreadsheet::ParseODS::Cell;
use Moo 2;
use Filter::signatures;
use feature 'signatures';
no warnings 'experimental::signatures';
our $VERSION = '0.39';
=head1 NAME
Spreadsheet::ParseODS::Cell - a cell in a spreadsheet
=cut
has 'value' => (
is => 'rw',
);
has 'unformatted' => (
is => 'rw',
);
has 'formula' => (
is => 'rw',
);
has 'type' => (
is => 'rw',
);
has 'hyperlink' => (
is => 'rw',
);
has 'format' => (
is => 'rw',
);
has 'style' => (
is => 'rw',
);
has 'is_merged' => (
is => 'rw',
);
has 'is_hidden' => (
is => 'rw',
);
sub get_hyperlink( $self ) {
$self->hyperlink
}
sub get_format( $self ) {
$self->format
}
1;
|