TextSelection.SmartFormat 메서드
현재 언어를 기반으로 선택된 텍스트 줄의 서식을 지정합니다.
네임스페이스: EnvDTE
어셈블리: EnvDTE(EnvDTE.dll)
구문
‘선언
Sub SmartFormat
void SmartFormat()
void SmartFormat()
abstract SmartFormat : unit -> unit
function SmartFormat()
설명
전세계 들여쓰기 기준에 따라, 앵커(anchor)와 액티브 엔드(active end)가 있는 줄을 포함하여, 다시 들여쓰기 또는 서식 선택한 텍스트SmartFormat은 선택 영역이 끝 부분의 완전한 선을 포함하게 합니다.
예제
Sub SmartFormatExample()
' Before running this example, open a code document.
Dim objSel As TextSelection = DTE.ActiveDocument.Selection
' Select all code in open document.
objSel.SelectAll()
' Apply smart formatting rules for the language.
objSel.SmartFormat()
End Sub
.NET Framework 보안
- 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용을 참조하십시오.