PDF::API2::Basic::PDF::Bool - A special form of L<PDF::String> which holds the strings


PDF-API2 documentation Contained in the PDF-API2 distribution.

Index


Code Index:

NAME

Top

PDF::API2::Basic::PDF::Bool - A special form of PDF::String which holds the strings true or false

METHODS

Top

$b->convert($str)

Converts a string into the string which will be stored.

as_pdf

Converts the value to a PDF output form


PDF-API2 documentation Contained in the PDF-API2 distribution.
#=======================================================================
#
#   THIS IS A REUSED PERL MODULE, FOR PROPER LICENCING TERMS SEE BELOW:
#
#   Copyright Martin Hosken <Martin_Hosken@sil.org>
#
#   No warranty or expression of effectiveness, least of all regarding
#   anyone's safety, is implied in this software or documentation.
#
#   This specific module is licensed under the Perl Artistic License.
#
#=======================================================================
package PDF::API2::Basic::PDF::Bool;

our $VERSION = '2.019';

use base 'PDF::API2::Basic::PDF::String';

use strict;

sub convert {
    return $_[1] eq 'true';
}

sub as_pdf {
    return $_[0]->{'val'} ? 'true' : 'false';
}

1;