返回介绍

HeightRule 属性

发布于 2019-09-29 10:10:35 字数 2369 浏览 1299 评论 0 收藏 0

全部显示

应用于 Frame 对象的 HeightRule 属性。

返回或设置确定指定图文框高度的方法。WdFrameSizeRule,可读写。

WdFrameSizeRule 可以是下列 WdFrameSizeRule 常量之一:
wdFrameAtLeast
wdFrameExact
wdFrameAuto

expression.HeightRule

expression 必需。该表达式返回一个 Frame 对象。

应用于 Cell、Cells、Row 和 Rows 对象的 HeightRule 属性。

返回或设置确定指定单元格或行高度的方法。WdRowHeightRule,可读写。

WdRowHeightRule 可以是下列 WdRowHeightRule 常量之一:
wdRowHeightAtLeast
wdRowHeightExactly
wdRowHeightAuto

expression.HeightRule

expression 必需。该表达式返回以上的一个对象。

说明

设置 Cell 或 Cells 对象的 HeightRule 属性,自动设置所在行的该属性。

示例

当应用于 Frame 对象时。

本示例设置活动文档中第一个图文框的高度和宽度均为 1 英寸。

If ActiveDocument.Frames.Count >= 1 Then
    With ActiveDocument.Frames(1)
        .HeightRule = wdFrameExact
        .Height = InchesToPoints(1)
        .WidthRule = wdFrameExact
        .Width = InchesToPoints(1)
    End With
End If

当应用于 Row 对象时。

本示例在新文档中创建一张 3x3 表格,并设置第二行的最小行高为 24 磅。

Set newDoc = Documents.Add
Set myTable = newDoc.Tables.Add(Range:=Selection.Range, _
    NumRows:=3, NumColumns:=3)
With myTable.Rows(2)
    .Height = 24
    .HeightRule = wdRowHeightAtLeast
End With

当应用于 Rows 对象时。

本示例将确定所选行高度的方法设为按行中最高的单元格自动调整。

If Selection.Information(wdWithInTable) = True Then
    Selection.Rows.HeightRule = wdRowHeightAuto
Else
    MsgBox "The insertion point is not in a table."
End If

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文