# AngularPrint An Angular module that allows users to selectively print elements, as well as provides optimizations for printing. By default, printing margins are minimized.

Installation

Using AngularPrint

printSection

```html
I'll print

Me, too!

I won't
```

printOnly

```html
I'll print, but until then nobody wants me

Me, too!

Me, too! Except that people still want to look at me in the meantime...
```

printHide

```html
I won't print

Me, either

I'll print, but those bozos upstairs are still taking up space
```

printRemove

```html
I won't print

Me, either

I'll print, and those bozos upstairs will finally stop making such a ruckus
```

printIf

```html
```

printBtn

```html I will make anything cause a print

to happen if you click me

```

printLandscape

```html I will cause any print

to be landscape

```

printAvoidBreak

```html ```

printTable

This example shows adjustments to an already-visible table in order to tailor it for printing ```html
Unwanted field Name Address Phone
{{person.unwantedInfo}} {{person.name}} {{person.address}} {{person.phone}}
``` This example shows a table made to only be visible during printing ```html
Name Address Phone
{{person.name}} {{person.address}} {{person.phone}}
```