BodyProperties.VerticalOverflow プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
テキストの垂直方向のオーバーフロー
スキーマ内の次の属性を表します。vertOverflow
[DocumentFormat.OpenXml.SchemaAttr(0, "vertOverflow")]
public DocumentFormat.OpenXml.EnumValue<DocumentFormat.OpenXml.Drawing.TextVerticalOverflowValues> VerticalOverflow { get; set; }
public DocumentFormat.OpenXml.EnumValue<DocumentFormat.OpenXml.Drawing.TextVerticalOverflowValues> VerticalOverflow { get; set; }
[DocumentFormat.OpenXml.SchemaAttr(0, "vertOverflow")]
public DocumentFormat.OpenXml.EnumValue<DocumentFormat.OpenXml.Drawing.TextVerticalOverflowValues>? VerticalOverflow { get; set; }
[DocumentFormat.OpenXml.SchemaAttr("vertOverflow")]
public DocumentFormat.OpenXml.EnumValue<DocumentFormat.OpenXml.Drawing.TextVerticalOverflowValues>? VerticalOverflow { get; set; }
public DocumentFormat.OpenXml.EnumValue<DocumentFormat.OpenXml.Drawing.TextVerticalOverflowValues>? VerticalOverflow { get; set; }
member this.VerticalOverflow : DocumentFormat.OpenXml.EnumValue<DocumentFormat.OpenXml.Drawing.TextVerticalOverflowValues> with get, set
[<DocumentFormat.OpenXml.SchemaAttr(0, "vertOverflow")>]
member this.VerticalOverflow : DocumentFormat.OpenXml.EnumValue<DocumentFormat.OpenXml.Drawing.TextVerticalOverflowValues> with get, set
[<DocumentFormat.OpenXml.SchemaAttr("vertOverflow")>]
member this.VerticalOverflow : DocumentFormat.OpenXml.EnumValue<DocumentFormat.OpenXml.Drawing.TextVerticalOverflowValues> with get, set
Public Property VerticalOverflow As EnumValue(Of TextVerticalOverflowValues)
プロパティ値
EnumValue<T> を返します。
- 属性
注釈
ECMA 国際 標準 ECMA-376 の次の情報は、このクラスを操作するときに役立ちます。
テキストが境界ボックスから垂直方向に流れ出せるかどうかを指定します。 これは、図形内のテキストが含まれている境界ボックスに対して大きすぎる場合に何が起こるかを判断するために使用されます。 この属性を省略すると、 の overflow
値が暗黙的に指定されます。
図形内に段落を乗算し、2 番目の段落でテキストが図形の外側に流れる場合を考えてみましょう。 属性のvertOverflow
値を clip
body プロパティとして適用すると、このオーバーフローするテキストは、図形の境界を越えて拡張されるのではなく、切り離されます。
<p:txBody>
<a:bodyPr vertOverflow="clip" … />
…
<a:p>
…
(Some text)
…
</a:p>
<a:p>
…
(Some longer text)
…
</a:p>
</p:txBody>
この属性に使用できる値は、単純型によって ST_TextVertOverflowType
定義されます。