Método TextSelection.ChangeCase
Altera o caso do texto selecionado.
Namespace: EnvDTE
Assembly: EnvDTE (em EnvDTE.dll)
Sintaxe
'Declaração
Sub ChangeCase ( _
How As vsCaseOptions _
)
void ChangeCase(
vsCaseOptions How
)
void ChangeCase(
[InAttribute] vsCaseOptions How
)
abstract ChangeCase :
How:vsCaseOptions -> unit
function ChangeCase(
How : vsCaseOptions
)
Parâmetros
- How
Tipo: EnvDTE.vsCaseOptions
Obrigatório.A vsCaseOptions constante que representa o texto a ser inserido.
Exemplos
Sub ChangeCaseExample()
' Open a document before running this example.
Dim objSel As TextSelection = DTE.ActiveDocument.Selection
objSel.StartOfDocument(True)
objSel.StartOfLine(vsStartOfLineOptions.vsStartOfLineOptionsFirstText)
objSel.CharRight(True, 4)
objSel.ChangeCase(vsCaseOptions.vsCaseOptionsUppercase)
MsgBox("Turned text uppercase.")
objSel.CharLeft(False, 1)
objSel.ChangeCase(vsCaseOptions.vsCaseOptionsLowercase)
MsgBox("Turned text lowercase.")
End Sub
Segurança do .NET Framework
- Confiança total para o chamador imediato. O membro não pode ser usado por código parcialmente confiável. Para obter mais informações, consulte Usando bibliotecas de código parcialmente confiáveis.