Word) (Range 物件
代表連續] 區域中的文件。 每個 範圍 物件是由所定義起始和結束字元位置。
類似於使用書籤的方式在文件中, Range 物件可用 Visual Basic 程序中識別特定的某些部分的文件。 但與書籤、 不同的 Range 物件只存在於定義它的程序執行時。 Range 物件是獨立的選取項目。 也就是您可以定義及操作而不變更選取範圍的範圍。 您也可以定義多個範圍中的文件時可以個別窗格中只有一個選取範圍。
使用 範圍 方法傳回由指定的起始和結束字元位置所定義的 Range 物件。 下列範例傳回參照使用中文件內的前 10 個字元的 Range 物件。
Set myRange = ActiveDocument.Range(Start:=0, End:=10)
使用 範圍 若要傳回的開頭和結尾的另一個物件所定義的 Range 物件的屬性。 Range屬性適用于許多物件 (例如Paragraph、Bookmark和Cell) 。 下列範例會傳回參照使用中文件第一個段落的 Range 物件。
Set aRange = ActiveDocument.Paragraphs(1).Range
下列範例會傳回 Range 物件,該物件參照使用中檔內的第二到第四個段落。
Set aRange = ActiveDocument.Range( _
Start:=ActiveDocument.Paragraphs(2).Range.Start, _
End:=ActiveDocument.Paragraphs(4).Range.End)
如需使用 Range 物件的詳細資訊,請參閱 使用 Range 物件。
- AutoFormat
- Calculate
- CheckGrammar
- CheckSpelling
- CheckSynonyms
- Collapse
- ComputeStatistics
- ConvertHangulAndHanja
- ConvertToTable
- Copy
- CopyAsPicture
- Cut
- Delete
- DetectLanguage
- EndOf
- Expand
- ExportAsFixedFormat
- ExportAsFixedFormat2
- ExportFragment
- GetSpellingSuggestions
- GoTo
- GoToEditableRange
- GoToNext
- GoToPrevious
- ImportFragment
- InRange
- InsertAfter
- InsertAlignmentTab
- InsertAutoText
- InsertBefore
- InsertBreak
- InsertCaption
- InsertCrossReference
- InsertDatabase
- InsertDateTime
- InsertFile
- InsertParagraph
- InsertParagraphAfter
- InsertParagraphBefore
- InsertSymbol
- InsertXML
- InStory
- IsEqual
- LookupNameProperties
- ModifyEnclosure
- Move
- MoveEnd
- MoveEndUntil
- MoveEndWhile
- MoveStart
- MoveStartUntil
- MoveStartWhile
- MoveUntil
- MoveWhile
- Next
- NextSubdocument
- Paste
- PasteAndFormat
- PasteAppendTable
- PasteAsNestedTable
- PasteExcelTable
- PasteSpecial
- PhoneticGuide
- Previous
- PreviousSubdocument
- 重新放置
- Select
- SetListLevel
- SetRange
- Sort
- SortAscending
- SortByHeadings
- SortDescending
- StartOf
- TCSCConverter
- WholeStory
- 應用程式
- Bold
- BoldBi
- BookmarkID
- Bookmarks
- Borders
- 案例
- Cells
- Characters
- CharacterStyle
- CharacterWidth
- Columns
- CombineCharacters
- 註解
- Conflicts
- ContentControls
- Creator
- DisableCharacterSpaceGrid
- Document
- Duplicate
- Editors
- EmphasisMark
- End
- EndnoteOptions
- Endnotes
- EnhMetaFileBits
- Fields
- Find
- FitTextWidth
- Font
- FootnoteOptions
- Footnotes
- FormattedText
- FormFields
- Frames
- GrammarChecked
- GrammaticalErrors
- HighlightColorIndex
- HorizontalInVertical
- HTMLDivisions
- Hyperlinks
- 識別碼
- Information
- InlineShapes
- IsEndOfRowMark
- Italic
- ItalicBi
- 假名
- LanguageDetected
- LanguageID
- LanguageIDFarEast
- LanguageIDOther
- ListFormat
- ListParagraphs
- ListStyle
- 會鎖定
- NextStoryRange
- NoProofing
- OMaths
- Orientation
- PageSetup
- ParagraphFormat
- Paragraphs
- ParagraphStyle
- Parent
- ParentContentControl
- PreviousBookmarkID
- ReadabilityStatistics
- 修訂
- Rows
- 指令碼
- Sections
- Sentences
- Shading
- ShapeRange
- ShowAll
- SpellingChecked
- SpellingErrors
- Start
- StoryLength
- StoryType
- Style
- 子文件
- SynonymInfo
- Tables
- TableStyle
- Text
- TextRetrievalMode
- TextVisibleOnScreen
- TopLevelTables
- TwoLinesInOne
- Underline
- 更新
- WordOpenXML
- Words
- XML
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。