TextSpanAndCookie Structure
Visual Studio 2015
Used to represent a span of code embedded in a document.
Assembly: Microsoft.VisualStudio.TextManager.Interop.8.0 (in Microsoft.VisualStudio.TextManager.Interop.8.0.dll)
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | (Inherited from ValueType.) |
![]() | GetHashCode() | (Inherited from ValueType.) |
![]() | GetType() | (Inherited from Object.) |
![]() | ToString() | (Inherited from ValueType.) |
| Name | Description | |
|---|---|---|
![]() | CodeSpan | A TextSpan object representing the span of embedded source code. |
![]() | ulHTMLCookie | Identifies the line the code block starts on. |
From singlefileeditor.idl:
typedef struct _TEXTSPANANDCOOKIE { ULONG ulHTMLCookie; TextSpan CodeSpan; } TextSpanAndCookie;
This structure is used in the IVsEnumCodeBlocks interface and is returned by the Next method.
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Show:

