WrapDirection Výčet

Definice

Určuje povolené směry, které může obsah obtékat kolem objektu.

public enum class WrapDirection
public enum WrapDirection
type WrapDirection = 
Public Enum WrapDirection
Dědičnost
WrapDirection

Pole

Both 3

Obsah, který prochází kolem obou stran objektu.

Left 1

Obsah, který prochází pouze kolem levé strany objektu.

None 0

Obsah, který kolem objektu neprotéká.

Right 2

Obsah, který prochází pouze po pravé straně objektu.

Příklady

Následující příklad ukazuje, jak nastavit WrapDirection atribut elementu Figure .

<FlowDocument>
  <Paragraph>
    <Figure
      Name="myFigure"              
      Width="140" Height="50" 
      HorizontalAnchor="PageCenter"
      VerticalAnchor="PageCenter"
      HorizontalOffset="100" 
      VerticalOffset="20" 
      WrapDirection="Both"
      />
  </Paragraph>
</FlowDocument>

Následující příklad ukazuje, jak nastavit WrapDirection vlastnost programově.

Figure figx = new Figure();
figx.Name = "myFigure";
figx.Width = new FigureLength(140);
figx.Height = new FigureLength(50);
figx.HorizontalAnchor = FigureHorizontalAnchor.PageCenter;
figx.VerticalAnchor = FigureVerticalAnchor.PageCenter;
figx.HorizontalOffset = 100;
figx.VerticalOffset = 20;
figx.WrapDirection = WrapDirection.Both;

Paragraph parx = new Paragraph(figx);
FlowDocument flowDoc = new FlowDocument(parx);
Dim figx As New Figure()
With figx
    .Name = "myFigure"
    .Width = New FigureLength(140)
    .Height = New FigureLength(50)
    .HorizontalAnchor = FigureHorizontalAnchor.PageCenter
    .VerticalAnchor = FigureVerticalAnchor.PageCenter
    .HorizontalOffset = 100
    .VerticalOffset = 20
    .WrapDirection = WrapDirection.Both
End With

Dim parx As New Paragraph(figx)
Dim flowDoc As New FlowDocument(parx)

Platí pro