Describes a two-dimensional rectangular geometry.
Public NotInheritable Class RectangleGeometry _ Inherits Geometry
Dim instance As RectangleGeometry
public sealed class RectangleGeometry : Geometry
<RectangleGeometry .../>
The following example shows how to create and render a RectangleGeometry object. The position and dimensions of the rectangle are defined by a Rect property value, provided as an attribute. The position is 50,50 and the height and width are both 25, which creates a square. The following illustration shows the output of the example.
<Canvas> <Path Fill="LemonChiffon" Stroke="Black" StrokeThickness="1"> <Path.Data> <RectangleGeometry Rect="50,50,25,25" /> </Path.Data> </Path> </Canvas>
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.