/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/VisualStudio/VisualBasic/Impl/Options/AutomationObject/AutomationObject.Fading.vb
36 строк
1 KB
Cyrus Najmabadi
Add options and UI
19 дек 2024, 21:15
19 дек 2024, 21:15
8f7b161
Код
Авторство
О чём код?
' Licensed to the .NET Foundation under one or more agreements. ' The .NET Foundation licenses this file to you under the MIT license. ' See the LICENSE file in the project root for more information. Imports Microsoft.CodeAnalysis.CodeStyle Namespace Microsoft.VisualStudio.LanguageServices.VisualBasic.Options Partial Public Class AutomationObject Public Property Fading_FadeOutUnreachableCode As Boolean Get Return GetBooleanOption(FadingOptions.FadeOutUnreachableCode) End Get Set(value As Boolean) SetBooleanOption(FadingOptions.FadeOutUnreachableCode, value) End Set End Property Public Property Fading_FadeOutUnusedImports As Boolean Get Return GetBooleanOption(FadingOptions.FadeOutUnusedImports) End Get Set(value As Boolean) SetBooleanOption(FadingOptions.FadeOutUnusedImports, value) End Set End Property Public Property Fading_FadeOutUnusedMembers As Boolean Get Return GetBooleanOption(FadingOptions.FadeOutUnusedMembers) End Get Set(value As Boolean) SetBooleanOption(FadingOptions.FadeOutUnusedMembers, value) End Set End Property End Class End Namespace