StandardTableColumnDefinitions Class

Visual Studio 2015
 

Names of predefined columns in the table.

Namespace:   Microsoft.VisualStudio.Shell.TableControl
Assembly:  Microsoft.VisualStudio.Shell.Immutable.14.0 (in Microsoft.VisualStudio.Shell.Immutable.14.0.dll)

System::Object
  Microsoft.VisualStudio.Shell.TableControl::StandardTableColumnDefinitions

public ref class StandardTableColumnDefinitions abstract sealed 

NameDescription
System_CAPS_pubfieldSystem_CAPS_staticBuildTool

Column used to display the build tool that generated the error (e.g. "FxCop"). This column uses the StandardTableKeyNames.BuildTool key name in an entry.

System_CAPS_pubfieldSystem_CAPS_staticColumn

The column used to display the column number associated with the entry. This column uses the StandardTableKeyNames.Column key name in an entry. The value displayed in the column is one more than the entry's StandardTableKeyNames.Column value.

System_CAPS_pubfieldSystem_CAPS_staticDetailsExpander

The column used to indicate whether or not the entry has additional content associated with it.

System_CAPS_pubfieldSystem_CAPS_staticDocumentName

The column used to display the document name associated with the entry. This column uses the StandardTableKeyNames.DocumentName key name in an entry. This column displays only the file name Path.GetFileName(string) in the column. The full path is displayed as a tool tip on the column (and is used when copying the column's contents).

System_CAPS_pubfieldSystem_CAPS_staticErrorCategory

Column used to display the entry's error category (e.g. "Compiler"). This column uses the StandardTableKeyNames.ErrorCategory key name in an entry.

System_CAPS_pubfieldSystem_CAPS_staticErrorCode

Column used to display the entry's error code (e.g. "CS2912"). This column uses the StandardTableKeyNames.ErrorCode and StandardTableKeyNames.ErrorCodeToolTip key names in an entry. This column is displayed as a hyperlink in the table. The < StandardTableKeyNames.ErrorCode is the hyperlink's text and the StandardTableKeyNames.ErrorCodeToolTip is the tooltip that is displayed when hovering over the link. Clicking on the hyperlink is equivalent to navigating to the entry's associated help information (see ITableEntryHandle.NavigateToHelp.

System_CAPS_pubfieldSystem_CAPS_staticErrorRank

Column used to display the entry's error rank (see StandardTableKeyNames.ErrorRank for more details). This column uses the StandardTableKeyNames.ErrorRank key name in an entry.

System_CAPS_pubfieldSystem_CAPS_staticErrorSeverity

Column used to display the entry's severity (based on either StandardTableKeyNames.ErrorSeverityImage or StandardTableKeyNames.ErrorSeverity). This column uses the StandardTableKeyNames.ErrorSeverity or StandardTableKeyNames.ErrorSeverityImage key name in an entry. If StandardTableKeyNames.ErrorSeverityImage is specified, then that ImageMoniker displayed in the column. Otherwise, a moniker based on StandardTableKeyNames.ErrorSeverity is used.

System_CAPS_pubfieldSystem_CAPS_staticErrorSource

Column used to display the entry's error source (e.g. "Build"). This column uses the StandardTableKeyNames.ErrorSource key name in an entry.

System_CAPS_pubfieldSystem_CAPS_staticLine

The column used to display the line number associated with the entry. This column uses the StandardTableKeyNames.Line key name in an entry. The value displayed in the column is one more than the entry's StandardTableKeyNames.Line value.

System_CAPS_pubfieldSystem_CAPS_staticPriority

Column used to display the entry's priority. This column uses the StandardTableKeyNames.Priority or StandardTableKeyNames.PriorityImage key name in an entry. If StandardTableKeyNames.PriorityImage is specified then that ImageMoniker displayed in the column. Otherwise a moniker based on StandardTableKeyNames.Priority is used.

System_CAPS_pubfieldSystem_CAPS_staticProjectName

Column used to display the entry's project (e.g. "ConsoleApplication1"). This column uses the StandardTableKeyNames.ProjectName key name in an entry.

System_CAPS_pubfieldSystem_CAPS_staticText

The column used to display the descriptive text associated with the entry. This column uses the StandardTableKeyNames.Text and StandardTableKeyNames.FullText key names in an entry. If the StandardTableKeyNames.FullText value exists, then StandardTableKeyNames.Text is displayed in the column, and the full text is used as a tool tip and when copying the contents. If the StandardTableKeyNames.FullText value doesn't exist, then StandardTableKeyNames.Text is displayed in the column and when copying the contents, and there is no tool tip.

These constants should be used only to refer to the names of columns (e.g. declaring what columns should be visible or changing the filter for a column). They should not be used when calling ITableEntry.TryGetValue(...). Use StandardTableKeyNames for those.

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Return to top
Show: