Help for this page

Select Code to Download


  1. or download this
    sub add_line {
      my ($self, $options) = @_;
    ...
    
      return $new_line;
    }
    
  2. or download this
    sub add_shape {
      my ($self, $shape, $options) = @_;
    ...
    
      return $new_shape;
    }
    
  3. or download this
    # Add the Rectangle
    $pp->add_shape('msoShapeRectangle', { left=>100, top=>100, width=>100,
    + height=>100});
    
    # Add the Rectangle
    $pp->add_shape(1, { left=>100, top=>100, width=>100, height=>100});