|
楼主 |
发表于 2015-12-30 08:12
|
显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件 ★ 免费下载 ★ ★ 使用帮助★
Bold属性
决定字符格式是否为粗体。可读写。MsoTriState 类型。
MsoTriState 可以是下列 MsoTriState 类型常数之一。
msoCTrue
msoFalse 字符格式不是粗体。
msoTriStateMixed 指定的文本范围同时包含粗体和非粗体字符。
msoTriStateToggle
msoTrue 字符格式是粗体。
VBA示例
本示例将第一张幻灯片的标题中的第一到第五个字符设为粗体。
Set myT = Application.ActivePresentation.Slides(1).Shapes.Title
myT.TextFrame.TextRange.Characters(1, 5).Font.Bold = msoTrue
Border属性
决定指定标注中的文本是否有边框。可读写。MsoTriState 类型。
MsoTriState 可以是下列 MsoTriState 类型常数之一。
msoCTrue
msoFalse
msoTriStateMixed
msoTriStateToggle
msoTrue 指定的标注中的文本有边框。
VBA示例
本示例在myDocument 中添加一个椭圆和指向该椭圆的标注。标注文本没有边框,但包含将文本与标注线分开的垂直强调线。
Set myDocument = ActivePresentation.Slides(1)
With myDocument.Shapes
.AddShape msoShapeOval, 180, 200, 280, 130
With .AddCallout(msoCalloutTwo, 420, 170, 170, 40)
.TextFrame.TextRange.Text = "My oval"
With .Callout
.Accent = msoTrue
.Border = msoFalse
End With
End With
End With
Border属性
决定指定标注中的文本是否有边框。可读写。MsoTriState 类型。
MsoTriState 可以是下列 MsoTriState 类型常数之一。
msoCTrue
msoFalse
msoTriStateMixed
msoTriStateToggle
msoTrue 指定的标注中的文本有边框。
VBA示例
本示例在myDocument 中添加一个椭圆和指向该椭圆的标注。标注文本没有边框,但包含将文本与标注线分开的垂直强调线。
Set myDocument = ActivePresentation.Slides(1)
With myDocument.Shapes
.AddShape msoShapeOval, 180, 200, 280, 130
With .AddCallout(msoCalloutTwo, 420, 170, 170, 40)
.TextFrame.TextRange.Text = "My oval"
With .Callout
.Accent = msoTrue
.Border = msoFalse
End With
End With
End With
Borders属性
返回Borders集合,该集合代表指定 Cell对象或 CellRange集合中的边框和对角线。只读。
有关返回集合中单个元素的详细信息,请参阅返回集合中的对象。
VBA示例
本示例将第一个单元格(位于选定表格的第二行上)中左框线的粗细值设置为 3 磅。
ActiveWindow.Selection.ShapeRange.Table.Rows(2) _
.Cells(1).Borders.Item(ppBorderLeft).Weight = 3
BoundHeight属性
返回指定文本框的文本文本边界框高度,以磅为单位。只读。Single 类型。
VBA示例
本示例在当前演示文稿的第一张幻灯片中添加一个圆角矩形,该矩形与第一个形状的文本边界框的大小相同。
With Application.ActivePresentation.Slides(1).Shapes
Set tr = .Item(1).TextFrame.TextRange
Set roundRect = .AddShape(msoShapeRoundedRectangle, _
tr.BoundLeft, tr.BoundTop, tr.BoundWidth, tr.BoundHeight)
End With
With roundRect.Fill
.ForeColor.RGB = RGB(255, 0, 128)
.Transparency = 0.75
End With
|
|