BigIP-GTM-ParseConfig
    
    
  
  
  
view release on metacpan or search on metacpan
example/example.pl view on Meta::CPAN
    # Create a new Excel workbook
    my $workbook
        = Spreadsheet::WriteExcel->new(
        "bigip-GTM-reports_$GTM" . "_$time" . '.xls' );
    # Add a worksheet
    my $worksheet = $workbook->add_worksheet( $GTM . '_DNS_details' );
    # Add and define a format
    my $format = $workbook->add_format();    # Add a format
    $format->set_bold();
    $format->set_color('blue');
    $format->set_bg_color('red');
    $format->set_size(18);
    $format->set_border(1);
    $format->set_align('center');
    $format->set_valign('vcenter');
    my $format_1 = $workbook->add_format();
    $format_1->set_size(12);
    $format_1->set_border(1);
( run in 0.542 second using v1.01-cache-2.11-cpan-5dc5da66d9d )