CADability dotNET
/// Overrides IsAttributeUsed(Object). The default implementation recursively calls IsAttributeUsed for all children (if any) and then checks the usage for all attributes implemented by CADability. No checks are performed for non CADability attributes. So you can override this method to handle your own attributes and call the base implementation for CADability attributes.

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

Syntax

C#
public virtual bool IsAttributeUsed(
	Object attribute
)
Visual Basic
Public Overridable Function IsAttributeUsed ( _
	attribute As Object _
) As Boolean
Visual C++
public:
virtual bool IsAttributeUsed(
	Object^ attribute
)

Parameters

attribute
Type: System..::..Object
attribut to check

Return Value

true if used by this GeoObject

Implements

IGeoObject..::..IsAttributeUsed(Object)

See Also