IStandardSet

class IStandardSet

Bases: ImpactCOMWrapperBase

Description:

Represents an installed standard set in the database.

Wraps a COM object or another wrapper instance. Accepts: - A valid impact_object - An existing impact_com_wrapper_base-derived instance

property author

Gets Author.

Description:

The author of the standard set.

Returns:

The value of Author.

Return type:

author (str)

property company

Gets Company.

Description:

The company who created of the standard set.

Returns:

The value of Company.

Return type:

company (str)

property installed

Gets Installed.

Description:

Indicates if the standard set is currently installed.

Returns:

The value of Installed.

Return type:

installed (bool)

property installed_by

Gets installed_by.

Description:

The user who installed the standard set.

Returns:

The value of installed_by.

Return type:

installed_by (IUser)

property installed_date_time

Gets installed_date_time.

Description:

The date/time the standard set was installed.

Returns:

The value of installed_date_time.

Return type:

installed_date_time (datetime)

property name

Gets Name.

Description:

The name of the standard set.

Returns:

The value of Name.

Return type:

name (str)

property standard_count

Gets standard_count.

Description:

The number of standards installed as part of this standard set.

Returns:

The value of standard_count.

Return type:

standard_count (int)

property standard_part_count

Gets standard_part_count.

Description:

The number of standard parts installed as part of this standard set.

Returns:

The value of standard_part_count.

Return type:

standard_part_count (int)

property uninstalled_by

Gets uninstalled_by.

Description:

The user who uninstalled the standard set.

Remarks:

This property is only applicable if installed is false.

Returns:

The value of uninstalled_by.

Return type:

uninstalled_by (IUser)

property uninstalled_date_time

Gets uninstalled_date_time.

Description:

The date/time the standard set was uninstalled.

Remarks:

This property is only applicable if installed is false.

Returns:

The value of uninstalled_date_time.

Return type:

uninstalled_date_time (datetime)

property version

Gets Version.

Description:

The version of the standard set.

Returns:

The value of Version.

Return type:

version (int)

standard(index)
Description:

Gets an IDatabaseItem object representing the standard with the specified index.

Remarks:

Use standard_count to determine the number of items installed.

Parameters:

index (int) – The index of the IDatabaseItem object to retrieve.

standard_part(index)
Description:

Gets an IDatabaseItem object representing the standard part with the specified index.

Remarks:

Use standard_part_count to determine the number of items installed.

Parameters:

index (int) – The index of the IDatabaseItem object to retrieve.

Examples