SolutionEntity

A solution entity.

Example

app = cf.GetApplication()
project = app:NewProject()

    -- Add a far field request
    
configuration = project.SolutionConfigurations[1]
farField = configuration.FarFields:Add3DPattern()

    -- Duplicate the far field request
    
farField:Duplicate()

    -- Delete the original far field request
    
farField:Delete()

Inheritance

The following objects are derived (specialisations) from the SolutionEntity object:

Property List

Included
Specifies whether the solution entity must be included or excluded. (Read/Write boolean)
Label
The object label. (Read/Write string)
Visible
Specifies whether the solution entity must be shown or hidden. (Read/Write boolean)

Method List

Delete ()
Delete the solution entity.
Duplicate ()
Duplicate the solution entity. (Returns a SolutionEntity object.)

Property Details

Included
Specifies whether the solution entity must be included or excluded.
Type
boolean
Access
Read/Write
Label
The object label.
Type
string
Access
Read/Write
Visible
Specifies whether the solution entity must be shown or hidden.
Type
boolean
Access
Read/Write

Method Details

Delete ()
Delete the solution entity.
Duplicate ()
Duplicate the solution entity.
Return
SolutionEntity
The duplicated entity.