Import-TypeView
---------------

### Synopsis
Imports a Type View

---

### Description

Imports a Type View, defined in a external file .method or .property file

---

### Related Links
* [Write-TypeView](Write-TypeView.md)

---

### Examples
> EXAMPLE 1

```PowerShell
Import-TypeView .\Types
```

---

### Parameters
#### **FilePath**
The path containing type information.

|Type        |Required|Position|PipelineInput        |Aliases |
|------------|--------|--------|---------------------|--------|
|`[String[]]`|true    |1       |true (ByPropertyName)|FullName|

#### **Deserialized**
If set, will generate an identical typeview for the deserialized form of each typename.

|Type      |Required|Position|PipelineInput|
|----------|--------|--------|-------------|
|`[Switch]`|false   |named   |false        |

#### **ExcludeFilePath**
Any file paths to exclude.

|Type          |Required|Position|PipelineInput        |
|--------------|--------|--------|---------------------|
|`[PSObject[]]`|false   |2       |true (ByPropertyName)|

#### **TextFileType**
A pattern describing the types of files that will embedded as constant note properties containing the file's text.

|Type          |Required|Position|PipelineInput        |Aliases        |
|--------------|--------|--------|---------------------|---------------|
|`[PSObject[]]`|false   |3       |true (ByPropertyName)|TextFilePattern|

---

### Syntax
```PowerShell
Import-TypeView [-FilePath] <String[]> [-Deserialized] [[-ExcludeFilePath] <PSObject[]>] [[-TextFileType] <PSObject[]>] [<CommonParameters>]
```
