DataProviderResult#

class ansys.stk.core.stkobjects.DataProviderResult#

Results returned by the data provider.

Overview#

category

Return a value representing the category of the result.

data_sets

Return a collection of Datasets.

intervals

Return a collection of intervals.

message

Return the message returned with the result.

sections

Return a collection of sections.

value

Return the reference to the object containing the actual results returned by the data provider. The type of the object returned depends on the category. The categories currently defined are: Interval, SubSection and TextMessage.

Import detail#

from ansys.stk.core.stkobjects import DataProviderResult

Property detail#

property DataProviderResult.category: DataProviderResultCategory#

Return a value representing the category of the result.

property DataProviderResult.data_sets: DataProviderResultDataSetCollection#

Return a collection of Datasets.

property DataProviderResult.intervals: DataProviderResultIntervalCollection#

Return a collection of intervals.

property DataProviderResult.message: DataProviderResultTextMessage#

Return the message returned with the result.

property DataProviderResult.sections: DataProviderResultSubSectionCollection#

Return a collection of sections.

property DataProviderResult.value: Any#

Return the reference to the object containing the actual results returned by the data provider. The type of the object returned depends on the category. The categories currently defined are: Interval, SubSection and TextMessage.