Skip to content

Delete unnecessary spaces #2521

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 14, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
90 changes: 45 additions & 45 deletions docs/extensibility/debugger/reference/displaykind.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,56 +2,56 @@
title: "DisplayKind | Microsoft Docs"
ms.date: "11/04/2016"
ms.topic: "conceptual"
helpviewer_keywords:
helpviewer_keywords:
- "DisplayKind enumeration"
ms.assetid: 940968c5-6065-4bda-8ee6-c31597db4d71
author: "gregvanl"
ms.author: "gregvanl"
manager: jillfra
ms.workload:
ms.workload:
- "vssdk"
---
# DisplayKind
Enumerates the valid values that represent the kinds of information to take from an [IDebugField](../../../extensibility/debugger/reference/idebugfield.md) object and display to the user.
## Syntax
```cpp
enum enum_DisplayKind
{
DisplayKind_Value = 0x1,
DisplayKind_Name = 0x2,
DisplayKind_Type = 0x3,
};
typedef DWORD DisplayKind;
```
```csharp
public enum enum_DisplayKind
{
DisplayKind_Value = 0x1,
DisplayKind_Name = 0x2,
DisplayKind_Type = 0x3,
};
```
#### Parameters
DisplayKind_Value
Value of the field.
DisplayKind_Name
Name of the field.
DisplayKind_Type
Type of field.
## Requirements
Header: Ee.h
Namespace: Microsoft.VisualStudio.Debugger.Interop
Assembly: Microsoft.VisualStudio.Debugger.Interop.dll
## See Also
[Enumerations](../../../extensibility/debugger/reference/enumerations-visual-studio-debugging.md)
[GetValueDisplayStringCount](../../../extensibility/debugger/reference/ieevisualizerservice-getvaluedisplaystringcount.md)
Enumerates the valid values that represent the kinds of information to take from an [IDebugField](../../../extensibility/debugger/reference/idebugfield.md) object and display to the user.

## Syntax

```cpp
enum enum_DisplayKind
{
DisplayKind_Value = 0x1,
DisplayKind_Name = 0x2,
DisplayKind_Type = 0x3,
};
typedef DWORD DisplayKind;
```

```csharp
public enum enum_DisplayKind
{
DisplayKind_Value = 0x1,
DisplayKind_Name = 0x2,
DisplayKind_Type = 0x3,
};
```

#### Parameters
DisplayKind_Value
Value of the field.

DisplayKind_Name
Name of the field.

DisplayKind_Type
Type of field.

## Requirements
Header: Ee.h

Namespace: Microsoft.VisualStudio.Debugger.Interop

Assembly: Microsoft.VisualStudio.Debugger.Interop.dll

## See Also
[Enumerations](../../../extensibility/debugger/reference/enumerations-visual-studio-debugging.md)
[GetValueDisplayStringCount](../../../extensibility/debugger/reference/ieevisualizerservice-getvaluedisplaystringcount.md)