CADability dotNET
Generates the lines or other GeoObjects that fill out the given shape in the given plane. If a HatchStyle returns null, it must implement the [!:Paint] and the [!:HitTest] methods. Default implementation returns null.

Namespace: CADability.Attribute
Assembly: CADability (in CADability.dll) Version: 1.1.4254.24737 (1.1.*)

Syntax

C#
public virtual GeoObjectList GenerateContent(
	CompoundShape shape,
	Plane plane
)
Visual Basic
Public Overridable Function GenerateContent ( _
	shape As CompoundShape, _
	plane As Plane _
) As GeoObjectList
Visual C++
public:
virtual GeoObjectList^ GenerateContent(
	CompoundShape^ shape, 
	Plane plane
)

Parameters

shape
Type: CADability.Shapes..::..CompoundShape
The shape to be filled
plane
Type: CADability..::..Plane
The plane of the shape

Return Value

The resulting GeoObjects or null

See Also