ShapeLine.CompoundType Property | Office File API | DevExpress Documentation Skip to main content
All docs
V26.1
  • ShapeLine.CompoundType Property

    Gets or sets the compound type for a line.

    Namespace: DevExpress.XtraRichEdit.API.Native

    Assembly: DevExpress.RichEdit.v26.1.Core.dll

    Declaration

    LineCompoundType CompoundType { get; set; }

    Property Value

    Available values:

    Remarks

    Use the CompoundType property to apply a line style composed of double or triple lines of different width.

    The example below shows how to create a rectangle and change its border settings.

    Rich_ShapeLine_Settings

    // Add a rectangle to a document.
    Shape rectangle = document.Shapes.InsertShape(document.Range.Start, ShapeGeometryPreset.Rectangle, new RectangleF(300, 200, 500, 300));
    // Fill the rectangle with color.
    rectangle.Fill.SetSolidFill(Color.FromArgb(0xFF, 0xEE, 0xAD));
    // Format the rectangle border.
    ShapeLine border = rectangle.Line;
    border.Color = Color.FromArgb(0x4D, 0x64, 0x8D);
    border.Thickness = 6;
    border.JoinType = LineJoinType.Miter;
    border.DashType = LineDashType.Solid;
    border.CompoundType = LineCompoundType.ThickThin;
    
    See Also
    Use of this site constitutes acceptance of our Website Terms of Use and Privacy Policy (Updated). Cookies Settings