Share

IManagedCenterlines.AddBisector Method

Method that creates a new bisector centerline. The centerline created with this method is kBisectorCenterline type.

Namespace:  Autodesk.iLogic.Interfaces
Assembly:  Autodesk.iLogic.Interfaces (in Autodesk.iLogic.Interfaces.dll) Version: 29.0

Syntax

VB

Function AddBisector ( 
	name As String,
	entityOne As GeometryIntent,
	entityTwo As GeometryIntent,
	Optional centermarkStyle As CentermarkStyle = Nothing,
	Optional layer As Layer = Nothing
) As IManagedCenterline

C#

IManagedCenterline AddBisector(
	string name,
	GeometryIntent entityOne,
	GeometryIntent entityTwo,
	CentermarkStyle centermarkStyle = null,
	Layer layer = null
)

Parameters

name
Type: System.String
The name of the managed centerline.
entityOne
Type: GeometryIntent
Input GeometryIntent that defines the first entity to bisect. This can be a line or a circular entity.
entityTwo
Type: GeometryIntent
Input GeometryIntent that defines the second entity to bisect. If the first entity was a line then this must also be a line. If the first entity was a circular entity then this must be a circular entity that is concentric to the first entity.
centermarkStyle (Optional)
Type: CentermarkStyle
Object that specifies the center mark style to use for the centerline. If not specified, the style defined by the active standard is used.
layer (Optional)
Type: Layer
Object that specifies the layer to use for the centerline. If not specified, the layer defined by the active standard is used.

Return Value

Type: IManagedCenterline
The managed centerline.

See Also

Reference

Was this information helpful?