Intersoft ClientUI Documentation
InsideVerticalBorderStyle Property
See Also  Send Feedback
Intersoft.Client.Documents Namespace > Table Class : InsideVerticalBorderStyle Property






Gets or sets the border line style that will be applied to all vertical border of cells.

Syntax

Visual Basic (Declaration) 
Public Property InsideVerticalBorderStyle As BorderLineStyle
Visual Basic (Usage)Copy Code
Dim instance As Table
Dim value As BorderLineStyle
 
instance.InsideVerticalBorderStyle = value
 
value = instance.InsideVerticalBorderStyle
C# 
public BorderLineStyle InsideVerticalBorderStyle {get; set;}
Delphi 
public read-write property InsideVerticalBorderStyle: BorderLineStyle; 
JScript 
public function get,set InsideVerticalBorderStyle : BorderLineStyle
Managed Extensions for C++ 
public: __property BorderLineStyle get_InsideVerticalBorderStyle();
public: __property void set_InsideVerticalBorderStyle( 
   BorderLineStyle value
);
C++/CLI 
public:
property BorderLineStyle InsideVerticalBorderStyle {
   BorderLineStyle get();
   void set (    BorderLineStyle value);
}

Remarks

Besides the left, top, right, and bottom individual border formatting, you can specify inside horizontal and inside vertical border formatting in Table level. When inside horizontal and inside vertical border formatting are specified, it will be used as the border format applied to the horizontal and vertical border of all TableCell elements in the Table. To specify these, simply set these additional border properties, InsideHorizontalBorderBrush, InsideHorizontalBorderStyle, InsideHorizontalBorderThickness, InsideVerticalBorderBrush, InsideVerticalBorderStyle, and InsideVerticalBorderThickness.

XAML Copy Code
<Intersoft:FlowDocument>
    <Intersoft:Table CellSpacing="5" CellPadding="5" TextAlignment="Center" LeftBorderBrush="Goldenrod" TopBorderBrush="Goldenrod"
                        RightBorderBrush="Goldenrod" BottomBorderBrush="Goldenrod" InsideHorizontalBorderBrush="PeachPuff"
                        InsideHorizontalBorderStyle="DashSmallGap" InsideHorizontalBorderThickness="2" InsideVerticalBorderBrush="PeachPuff"
                        InsideVerticalBorderStyle="DashSmallGap" InsideVerticalBorderThickness="2"
                        BorderThickness="2">
        <Intersoft:Table.Columns>
            <Intersoft:TableColumn Width="50"/>
            <Intersoft:TableColumn Width="150"/>
            <Intersoft:TableColumn Width="150"/>
        </Intersoft:Table.Columns>
        <Intersoft:TableRowGroup>
            <Intersoft:TableRow>
                <Intersoft:TableCell>
                    <Intersoft:Paragraph>
                        <Intersoft:Run>
                            No.
                        </Intersoft:Run>
                    </Intersoft:Paragraph>
                </Intersoft:TableCell>
                <Intersoft:TableCell>
                    <Intersoft:Paragraph>
                        <Intersoft:Run>
                            Employee Name
                        </Intersoft:Run>
                    </Intersoft:Paragraph>
                </Intersoft:TableCell>
                <Intersoft:TableCell>
                    <Intersoft:Paragraph>
                        <Intersoft:Run>
                            Title
                        </Intersoft:Run>
                    </Intersoft:Paragraph>
                </Intersoft:TableCell>
            </Intersoft:TableRow>
        </Intersoft:TableRowGroup>
        <Intersoft:TableRowGroup>
            <Intersoft:TableRow>
                <Intersoft:TableCell>
                    <Intersoft:Paragraph>
                        <Intersoft:Run>
                            1.
                        </Intersoft:Run>
                    </Intersoft:Paragraph>
                </Intersoft:TableCell>
                <Intersoft:TableCell>
                    <Intersoft:Paragraph>
                        <Intersoft:Run>
                            Johanna Woods
                        </Intersoft:Run>
                    </Intersoft:Paragraph>
                </Intersoft:TableCell>
                <Intersoft:TableCell>
                    <Intersoft:Paragraph>
                        <Intersoft:Run>
                            Sales Member
                        </Intersoft:Run>
                    </Intersoft:Paragraph>
                </Intersoft:TableCell>
            </Intersoft:TableRow>
            <Intersoft:TableRow>
                <Intersoft:TableCell>
                    <Intersoft:Paragraph>
                        <Intersoft:Run>
                            2.
                        </Intersoft:Run>
                    </Intersoft:Paragraph>
                </Intersoft:TableCell>
                <Intersoft:TableCell>
                    <Intersoft:Paragraph>
                        <Intersoft:Run>
                            Andrew Smith
                        </Intersoft:Run>
                    </Intersoft:Paragraph>
                </Intersoft:TableCell>
                <Intersoft:TableCell>
                    <Intersoft:Paragraph>
                        <Intersoft:Run>
                            Technical Support
                        </Intersoft:Run>
                    </Intersoft:Paragraph>
                </Intersoft:TableCell>
            </Intersoft:TableRow>
        </Intersoft:TableRowGroup>
    </Intersoft:Table>
</Intersoft:FlowDocument>

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2012 All Rights Reserved.