Interface IFloatNamedPropertyIndexer
A helper interface that allows you to quickly get the floating value of a nested property by its
unique name using a convenient syntax with square brackets Flt["NestedPropName"]
.
Namespace: SprutTechnology.SCPostprocessor
Assembly: SCPostprocessor.dll
Syntax
public interface IFloatNamedPropertyIndexer
Properties
Item[String]
Returns the floating value of a nested property by its unique name. You can use the compound name
of the property, separating the individual parts with a point, to obtain the property value of
the second and subsequent nesting levels. For example: Flt["Project.Tolerance"]
.
The case of characters does not matter.
Declaration
double this[string PName] { get; set; }
Parameters
Type | Name | Description |
---|---|---|
System.String | PName | The name of a nested parameter you want to obtain. It can be compound name separated by points. |
Property Value
Type | Description |
---|---|
System.Double | Returns the floating value of a nested property. |