> For the complete documentation index, see [llms.txt](https://docs.devolutions.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.devolutions.net/powershell-universal/it/app/components/surfaces/paper.md).

# Paper

**In Material Design, le proprietà fisiche della carta vengono trasposte sullo schermo.**

Lo sfondo di un'applicazione ricorda la texture piatta e opaca di un foglio di carta, e il comportamento di un'applicazione imita la capacità della carta di essere ridimensionata, mescolata e rilegata in più fogli.

## Paper

![](/files/hOqsNNGxsQvrBBt7mc71)

```powershell
New-UDPaper -Elevation 0 -Content {} 
New-UDPaper -Elevation 1 -Content {} 
New-UDPaper -Elevation 3 -Content {}
```

## Formattazione del contenuto di Paper

Per impostazione predefinita, il componente paper utilizza il tipo di visualizzazione flex per il contenuto all'interno del paper. Ciò può causare problemi con altri tipi di contenuto che possono essere memorizzati all'interno del paper. È possibile sovrascrivere il tipo di visualizzazione utilizzando il parametro `-Style`.

```powershell
$m=@'
# Hello

## world
- a
- b
-c
'@

New-UDPaper -Elevation 7 -Children {
   New-UDMarkdown -markdown $m
} -Style @{
   display = 'block'
}
```

## Paper quadrato

Per impostazione predefinita, il paper avrà bordi arrotondati. È possibile ridurre l'arrotondamento utilizzando un paper quadrato.

```powershell
New-UDPaper -Square -Content {}
```

## Paper colorato

Il parametro `-Style` può essere utilizzato per colorare il paper. Qualsiasi CSS valido può essere incluso nella hashtable per uno stile.

L'esempio seguente crea un paper con sfondo rosso.

```powershell
New-UDPaper  -Content { } -Style @{ 
     backgroundColor = 'red'
}
```

## API

* [New-UDPaper](/powershell-universal/it/comandi-powershell/new-udpaper.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.devolutions.net/powershell-universal/it/app/components/surfaces/paper.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
