@@ -128,13 +128,13 @@ Namespace Microsoft.VisualStudio.Editors.ApplicationDesigner
128128 ''' Returns the PropertyPageInfo for this designer panel, if it corresponds to a property page.
129129 ''' Otherwise returns Nothing.
130130 ''' </summary>
131- Public ReadOnly Property PropertyPageInfo() As PropertyPageInfo
131+ Public ReadOnly Property PropertyPageInfo As PropertyPageInfo
132132 Get
133133 Return _propertyPageInfo
134134 End Get
135135 End Property
136136
137- Public ReadOnly Property IsPropertyPage() As Boolean
137+ Public ReadOnly Property IsPropertyPage As Boolean
138138 Get
139139 Dim ReturnValue As Boolean = (_propertyPageInfo IsNot Nothing )
140140 Debug.Assert( Not ReturnValue OrElse EditorGuid.Equals( GetType (PropPageDesigner.PropPageDesignerEditorFactory).GUID),
@@ -143,19 +143,19 @@ Namespace Microsoft.VisualStudio.Editors.ApplicationDesigner
143143 End Get
144144 End Property
145145
146- Public ReadOnly Property Hierarchy() As IVsHierarchy
146+ Public ReadOnly Property Hierarchy As IVsHierarchy
147147 Get
148148 Return _hierarchy
149149 End Get
150150 End Property
151151
152- Public ReadOnly Property ItemId() As UInteger
152+ Public ReadOnly Property ItemId As UInteger
153153 Get
154154 Return _itemId
155155 End Get
156156 End Property
157157
158- Public ReadOnly Property DocCookie() As UInteger
158+ Public ReadOnly Property DocCookie As UInteger
159159 Get
160160 Return _docCookie
161161 End Get
@@ -165,11 +165,11 @@ Namespace Microsoft.VisualStudio.Editors.ApplicationDesigner
165165 ''' Provides a custom view control that can be displayed instead of hosting a designer. We can display either
166166 ''' a custom view provider or a hosted designer, but not both at once.
167167 ''' </summary>
168- Public Property CustomViewProvider() As CustomViewProvider
168+ Public Property CustomViewProvider As CustomViewProvider
169169 Get
170170 Return _customViewProvider
171171 End Get
172- Set (value As CustomViewProvider)
172+ Set
173173 If _customViewProvider Is value Then
174174 Exit Property
175175 End If
@@ -646,11 +646,11 @@ Namespace Microsoft.VisualStudio.Editors.ApplicationDesigner
646646 ''' <summary>
647647 ''' Get/set the window frame owned by this panel
648648 ''' </summary>
649- Public Property VsWindowFrame() As IVsWindowFrame
649+ Public Property VsWindowFrame As IVsWindowFrame
650650 Get
651651 Return _vsWindowFrame
652652 End Get
653- Set (Value As IVsWindowFrame)
653+ Set
654654 If Value IsNot _vsWindowFrame Then
655655 Common.Switches.TracePDFocus(TraceLevel.Info, "ApplicationDesignerPanel.set_VsWindowFrame" )
656656 CloseFrame()
@@ -669,11 +669,11 @@ Namespace Microsoft.VisualStudio.Editors.ApplicationDesigner
669669 ''' The Guid used by the editor for this panel. For property pages, this is always
670670 ''' PropPageDesignerView's guid.
671671 ''' </summary>
672- Public Property EditorGuid() As Guid
672+ Public Property EditorGuid As Guid
673673 Get
674674 Return _editorGuid
675675 End Get
676- Set (Value As Guid)
676+ Set
677677 If IsPropertyPage Then
678678 Debug.Fail( "Cannot change EditorGuid for property page designer panels" )
679679 Exit Property
@@ -687,7 +687,7 @@ Namespace Microsoft.VisualStudio.Editors.ApplicationDesigner
687687 ''' The Guid used by the object actually represented in this panel. For property pages,
688688 ''' this is the guid of the property page. For all others, this is the same as EditorGuid.
689689 ''' </summary>
690- Public ReadOnly Property ActualGuid() As Guid
690+ Public ReadOnly Property ActualGuid As Guid
691691 Get
692692 If _propertyPageInfo IsNot Nothing Then
693693 Return _propertyPageInfo.Guid
@@ -700,31 +700,31 @@ Namespace Microsoft.VisualStudio.Editors.ApplicationDesigner
700700 ''' <summary>
701701 ''' Physical view guid for the editor
702702 ''' </summary>
703- Public Property PhysicalView() As String
703+ Public Property PhysicalView As String
704704 Get
705705 Return _physicalView
706706 End Get
707- Set (Value As String )
707+ Set
708708 _physicalView = Value
709709 End Set
710710 End Property
711711
712712 ''' <summary>
713713 ''' The editor's caption
714714 ''' </summary>
715- Public Property EditorCaption() As String
715+ Public Property EditorCaption As String
716716 Get
717717 Return _editorCaption
718718 End Get
719- Set (Value As String )
719+ Set
720720 _editorCaption = Value
721721 End Set
722722 End Property
723723
724724 ''' <summary>
725725 ''' The filename moniker of the file which is being edited by the editor
726726 ''' </summary>
727- Public Property MkDocument() As String
727+ Public Property MkDocument As String
728728 Get
729729 If _mkDocument <> "" Then
730730 Return _mkDocument
@@ -734,7 +734,7 @@ Namespace Microsoft.VisualStudio.Editors.ApplicationDesigner
734734 Return ""
735735 End If
736736 End Get
737- Set (Value As String )
737+ Set
738738 Debug.Assert(_mkDocument Is Nothing , "MkDocument set multiple times" )
739739 _mkDocument = Value
740740 End Set
@@ -743,11 +743,11 @@ Namespace Microsoft.VisualStudio.Editors.ApplicationDesigner
743743 ''' <summary>
744744 ''' The filename moniker of the file which is being edited by the editor
745745 ''' </summary>
746- Public Property CustomMkDocumentProvider() As CustomDocumentMonikerProvider
746+ Public Property CustomMkDocumentProvider As CustomDocumentMonikerProvider
747747 Get
748748 Return _customMkDocumentProvider
749749 End Get
750- Set (Value As CustomDocumentMonikerProvider)
750+ Set
751751 Debug.Assert(_customMkDocumentProvider Is Nothing OrElse Value Is Nothing , "m_CustomMkDocumentProvider set multiple times" )
752752 _customMkDocumentProvider = Value
753753 End Set
@@ -756,47 +756,47 @@ Namespace Microsoft.VisualStudio.Editors.ApplicationDesigner
756756 ''' <summary>
757757 ''' The DocData for the editor
758758 ''' </summary>
759- Public Property DocData() As Object
759+ Public Property DocData As Object
760760 Get
761761 Return _docData
762762 End Get
763- Set (Value As Object )
763+ Set
764764 _docData = Value
765765 End Set
766766 End Property
767767
768768 ''' <summary>
769769 ''' The DocView for the editor
770770 ''' </summary>
771- Public Property DocView() As Control
771+ Public Property DocView As Control
772772 Get
773773 Return _docView
774774 End Get
775- Set (Value As Control)
775+ Set
776776 _docView = Value
777777 End Set
778778 End Property
779779
780780 ''' <summary>
781781 ''' Flags to be passed to VsUIShellOpenDocument
782782 ''' </summary>
783- Public Property EditFlags() As UInteger
783+ Public Property EditFlags As UInteger
784784 Get
785785 Return _editFlags
786786 End Get
787- Set (Value As UInteger)
787+ Set
788788 _editFlags = Value
789789 End Set
790790 End Property
791791
792792 ''' <summary>
793793 ''' The title that should be used for this panel's tab
794794 ''' </summary>
795- Public Property TabTitle() As String
795+ Public Property TabTitle As String
796796 Get
797797 Return _tabTitle
798798 End Get
799- Set (value As String )
799+ Set
800800 _tabTitle = value
801801
802802 ' We set Window.Text to be the page Title to help screen reader.
@@ -813,11 +813,11 @@ Namespace Microsoft.VisualStudio.Editors.ApplicationDesigner
813813 ''' <summary>
814814 ''' The name for the tab that is not localized and is seen by QA automation tools
815815 ''' </summary>
816- Public Property TabAutomationName() As String
816+ Public Property TabAutomationName As String
817817 Get
818818 Return _tabAutomationName
819819 End Get
820- Set (value As String )
820+ Set
821821 _tabAutomationName = value
822822 End Set
823823 End Property
@@ -1033,7 +1033,7 @@ Namespace Microsoft.VisualStudio.Editors.ApplicationDesigner
10331033 '''<summary>
10341034 ''' Initialize layout...
10351035 '''</summary>
1036- <DebuggerStepThrough() >
1036+ <DebuggerStepThrough>
10371037 Private Sub InitializeComponent()
10381038 _pageHostingPanel = New Panel
10391039 _pageNameLabel = New Label
0 commit comments