DataProviderResult#

class ansys.stk.core.stkobjects.DataProviderResult#

Results returned by the data provider.

Overview#

category

Return a value representing the category of the result.

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.

sections

Return a collection of sections.

intervals

Return a collection of intervals.

data_sets

Return a collection of Datasets.

message

Return the message returned with the result.

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.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.

property DataProviderResult.sections: DataProviderResultSubSectionCollection#

Return a collection of sections.

property DataProviderResult.intervals: DataProviderResultIntervalCollection#

Return a collection of intervals.

property DataProviderResult.data_sets: DataProviderResultDataSetCollection#

Return a collection of Datasets.

property DataProviderResult.message: DataProviderResultTextMessage#

Return the message returned with the result.