API Help
Eplan.EplApi.DataModel.MasterData Namespace / PlotFrame Class / Properties Property
Example

In This Topic
    Properties Property
    In This Topic
    .NET Property enabling access to P8 properties of the PlotFrame object.
    Syntax
    public new PlotFramePropertyList Properties {get;}
    public:
    new property PlotFramePropertyList^ Properties {
       PlotFramePropertyList^ get();
    }

    Property Value

    P8 properties of the plotframe.
    Exceptions
    ExceptionDescription
    Thrown when no new logical plotframe can be added to the project.
    Example
    PlotFrame oPlotFrame;
    String pfGridOffsetX = oPlotFrame.Properties.FRAME_EVALUATION_AREA_START_POINT_X.ToString();
    String pfGridOffsetY = oPlotFrame.Properties.FRAME_EVALUATION_AREA_START_POINT_Y.ToString();
    String pfColWidth1 = oPlotFrame.Properties.FRAME_PATHSIZE[1].ToString();
    String pfColWidth2 = oPlotFrame.Properties.FRAME_PATHSIZE[1].ToString();
    See Also