Freigeben über


BodyProperties.HorizontalOverflow Eigenschaft

Definition

Horizontaler Textüberlauf

Stellt das folgende Attribut im Schema dar: horzOverflow

[DocumentFormat.OpenXml.SchemaAttr(0, "horzOverflow")]
public DocumentFormat.OpenXml.EnumValue<DocumentFormat.OpenXml.Drawing.TextHorizontalOverflowValues> HorizontalOverflow { get; set; }
public DocumentFormat.OpenXml.EnumValue<DocumentFormat.OpenXml.Drawing.TextHorizontalOverflowValues> HorizontalOverflow { get; set; }
[DocumentFormat.OpenXml.SchemaAttr(0, "horzOverflow")]
public DocumentFormat.OpenXml.EnumValue<DocumentFormat.OpenXml.Drawing.TextHorizontalOverflowValues>? HorizontalOverflow { get; set; }
[DocumentFormat.OpenXml.SchemaAttr("horzOverflow")]
public DocumentFormat.OpenXml.EnumValue<DocumentFormat.OpenXml.Drawing.TextHorizontalOverflowValues>? HorizontalOverflow { get; set; }
public DocumentFormat.OpenXml.EnumValue<DocumentFormat.OpenXml.Drawing.TextHorizontalOverflowValues>? HorizontalOverflow { get; set; }
member this.HorizontalOverflow : DocumentFormat.OpenXml.EnumValue<DocumentFormat.OpenXml.Drawing.TextHorizontalOverflowValues> with get, set
[<DocumentFormat.OpenXml.SchemaAttr(0, "horzOverflow")>]
member this.HorizontalOverflow : DocumentFormat.OpenXml.EnumValue<DocumentFormat.OpenXml.Drawing.TextHorizontalOverflowValues> with get, set
[<DocumentFormat.OpenXml.SchemaAttr("horzOverflow")>]
member this.HorizontalOverflow : DocumentFormat.OpenXml.EnumValue<DocumentFormat.OpenXml.Drawing.TextHorizontalOverflowValues> with get, set
Public Property HorizontalOverflow As EnumValue(Of TextHorizontalOverflowValues)

Eigenschaftswert

Gibt zurück EnumValue<T>.

Attribute

Hinweise

Die folgenden Informationen aus dem INTERNATIONALEN ECMA-Standard ECMA-376 können bei der Arbeit mit dieser Klasse nützlich sein.

Bestimmt, ob der Text horizontal aus dem umgebenden Feld fließen kann. Dies wird verwendet, um zu bestimmen, was geschieht, wenn der Text in einer Form für das umgebende Feld, in dem es enthalten ist, zu groß ist. Wenn dieses Attribut nicht angegeben wird, wird der Wert impliziert overflow .

Betrachten Sie den Fall, in dem wir Absätze innerhalb einer Form multiplizieren und die zweite größer ist und bewirkt, dass Text außerhalb der Form fließt. Durch Anwenden des clip Werts des horzOverflow Attributs als Body-Eigenschaft wird dieser überlaufende Text jetzt abgeschnitten, anstatt sich über die Grenzen der Form hinaus zu erstrecken.

<p:txBody>  
  <a:bodyPr horzOverflow="clip" … />  
   …  
    <a:p>  
     …  
     (Some text)  
     …  
    </a:p>  
    <a:p>  
     …  
     (Some more text)  
     …  
    </a:p>  
</p:txBody>  

Die möglichen Werte für dieses Attribut werden durch den ST_TextHorzOverflowType einfachen Typ definiert.

Gilt für: