Eplan Platform API
Eplan.EplApi.DataModel Namespace / PropertyDefinition Class / IsInternal Property
Example

IsInternal Property
Allows to check if a given property marked as internal. Don't use this property.
Syntax
public bool IsInternal {get;}

Property Value

true : Property is internal

false : Property is not internal

Remarks
Can be called only after retrieving form given API class property list.
Example
Function function; //a valid function object

bool b = function.Properties.FUNC_TERMINAL_CONNECTIONINFO_0.Definition.IsInternal;
See Also