LinePatternDefinition

class HPS.LinePatternDefinition : public HPS.Definition

The LinePatternDefinition class is a smart pointer to a database object. It is a handle to a line pattern defined within a portfolio.

Public Functions

override void Dispose ()
LinePatternDefinition ()

The default constructor creates an uninitialized LinePatternDefinition object. The Type() function will return Type.None.

LinePatternDefinition (HPS.Definition in_that)

This constructor creates a LinePatternDefinition object that shares the underlying smart-pointer of the source Definition. The copy will only be successful if the source definition is really an upcast of a line pattern definition. Otherwise the copy will fail and the resulting LinePatternDefinition will be invalid.

Param in_that

The source Definition to copy.

LinePatternDefinition (HPS.LinePatternDefinition in_that)

The copy constructor creates a LinePatternDefinition object that shares the underlying smart-pointer of the source LinePatternDefinition.

Param in_that

The source LinePatternDefinition to copy.

override HPS.Type ObjectType ()

This function returns the type the object, as declared (if the object is derived, this does not give the true type of the derived object).

Return

The declared type of the object in question, which may differ from the true, underlying type.

void Set (HPS.LinePatternKit in_kit)

Redefine the line pattern for this LinePatternDefinition.

Param in_kit

The new line pattern for this LinePatternDefinition.

void Show (out HPS.LinePatternKit out_kit)

Shows the line pattern for this LinePatternDefinition.

Param out_kit

The line pattern for this LinePatternDefinition.