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






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

Syntax

Visual Basic (Declaration) 
Public Property InsideVerticalBorderThickness As Double
Visual Basic (Usage)Copy Code
Dim instance As Table
Dim value As Double
 
instance.InsideVerticalBorderThickness = value
 
value = instance.InsideVerticalBorderThickness
C# 
public double InsideVerticalBorderThickness {get; set;}
Delphi 
public read-write property InsideVerticalBorderThickness: Double; 
JScript 
public function get,set InsideVerticalBorderThickness : double
Managed Extensions for C++ 
public: __property double get_InsideVerticalBorderThickness();
public: __property void set_InsideVerticalBorderThickness( 
   double value
);
C++/CLI 
public:
property double InsideVerticalBorderThickness {
   double get();
   void set (    double 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.