Master TextStyles (TextStyle)![]()  Ruler![]()  TextFrame![]()  TextStyleLevels (TextStyleLevel) | 
标题文本、正文文本和默认文本 
 三个文本样式 
 的集合,其中每个文本样式由一个 TextStyle 对象表示。每个文本样式包含一个描述文本在文本边框中的放置方式的 TextFrame 对象、一个包含制表位和大纲缩进格式信息的 Ruler 对象、一个包含大纲文本格式化信息的 TextStyleLevels 集合。
使用 TextStyles(index) 返回单个 TextStyle 对象,其中 index 为 ppBodyStyle、ppDefaultStyle 或 ppTitleStyle。本示例设置当前演示文稿所有备注页上备注正文区域的边距。
With ActivePresentation.NotesMaster _
        .TextStyles(ppBodyStyle).TextFrame
    .MarginBottom = 50
    .MarginLeft = 50
    .MarginRight = 50
    .MarginTop = 50
End With