Spread Windows Forms 12.0 Product Documentation
Outside Property
Example 


FarPoint.Win Assembly > FarPoint.Win Namespace > CompoundBorder Class : Outside Property
Gets the outside border for a compound border.
Syntax
'Declaration
 
Public ReadOnly Property Outside As IBorder
'Usage
 
Dim instance As CompoundBorder
Dim value As IBorder
 
value = instance.Outside
public IBorder Outside {get;}

Property Value

IBorder object containing the outside border
Remarks

A compound border is made up of three parts: the inside border, the face, and the outside border. The following figure illustrates the three parts.

Specify the inside border using one of the CompoundBorder constructors.

Example
This example returns the outside border for the compound border.
FarPoint.Win.ComplexBorderSide side = new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.MediumDashed);

FarPoint.Win.ComplexBorderSide side1 = new FarPoint.Win.ComplexBorderSide(); 
FarPoint.Win.ComplexBorder lb = new FarPoint.Win.ComplexBorder(side); 
FarPoint.Win.ComplexBorder tb = new FarPoint.Win.ComplexBorder(side1); 
FarPoint.Win.CompoundBorder cb = new FarPoint.Win.CompoundBorder(lb, tb, 3, Color.Red);
FarPoint.Win.IBorder outside = cb.Outside;
MessageBox.Show("The type of border for the outside is " + Convert.ToString(outside) + ".");
Dim side As New FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.MediumDashed)
Dim side1 As New FarPoint.Win.ComplexBorderSide
Dim lb As New FarPoint.Win.ComplexBorder(side)
Dim tb As New FarPoint.Win.ComplexBorder(side1)
Dim cb As New FarPoint.Win.CompoundBorder(lb, tb, 3, Color.Red)
Dim outside As FarPoint.Win.IBorder = cb.Outside
MessageBox.Show("The type of border for the outside is " + Convert.ToString(outside) + ".")
See Also

Reference

CompoundBorder Class
CompoundBorder Members
Inside Property
CompoundBorder Constructor