Skip to content

changed classes from internal to public #411

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

Closed
wants to merge 1 commit into from
Closed
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
8 changes: 4 additions & 4 deletions docs/extensibility/walkthrough-highlighting-text.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ You can add different visual effects to the editor by creating Managed Extensibi
4. Create a class that inherits from <xref:Microsoft.VisualStudio.Text.Tagging.TextMarkerTag> and name it `HighlightWordTag`.

```csharp
internal class HighlightWordTag : TextMarkerTag
public class HighlightWordTag : TextMarkerTag
{

}
Expand All @@ -94,7 +94,7 @@ You can add different visual effects to the editor by creating Managed Extensibi
[Export(typeof(EditorFormatDefinition))]
[Name("MarkerFormatDefinition/HighlightWordFormatDefinition")]
[UserVisible(true)]
internal class HighlightWordFormatDefinition : MarkerFormatDefinition
public class HighlightWordFormatDefinition : MarkerFormatDefinition
{

}
Expand Down Expand Up @@ -126,7 +126,7 @@ You can add different visual effects to the editor by creating Managed Extensibi
1. Create a class that implements <xref:Microsoft.VisualStudio.Text.Tagging.ITagger%601> of type `HighlightWordTag`, and name it `HighlightWordTagger`.

```csharp
internal class HighlightWordTagger : ITagger<HighlightWordTag>
public class HighlightWordTagger : ITagger<HighlightWordTag>
{

}
Expand Down Expand Up @@ -407,4 +407,4 @@ You can add different visual effects to the editor by creating Managed Extensibi
4. Position the cursor in one of the occurrences of "hello". Every occurrence should be highlighted in blue.

## See Also
[Walkthrough: Linking a Content Type to a File Name Extension](../extensibility/walkthrough-linking-a-content-type-to-a-file-name-extension.md)
[Walkthrough: Linking a Content Type to a File Name Extension](../extensibility/walkthrough-linking-a-content-type-to-a-file-name-extension.md)