forked from PLCnext/CSharpExamples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FBWithMethods.cs
70 lines (64 loc) · 1.68 KB
/
FBWithMethods.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#region Copyright
//
// Copyright (c) Phoenix Contact GmbH & Co. KG. All rights reserved.
// Licensed under the MIT. See LICENSE file in the project root for full license information.
//
#endregion
using System;
using System.Iec61131Lib;
using Eclr;
using Iec61131.Engineering.Prototypes.Types;
using Iec61131.Engineering.Prototypes.Variables;
using Iec61131.Engineering.Prototypes.Methods;
using Iec61131.Engineering.Prototypes.Common;
namespace ExampleLib
{
[FunctionBlock]
public class FB_with_methods
{
//reuse of the struct in FBWithUserStruct.cs
Position CurrentPosition;
[Initialization]
public void __Init()
{
}
[Execution]
public void __Process()
{
}
//the attribute "User" indicates a method for the PCWorx Engineer
//and make it available for the user in IEC code
[User]
public void SetX(int x)
{
CurrentPosition.x = x;
}
[User]
public void SetY(int y)
{
CurrentPosition.y = y;
}
[User]
public int GetX()
{
return CurrentPosition.x;
}
[User]
public int GetY()
{
return CurrentPosition.y;
}
//Complex data types are returned as referenced parameter
[User]
public void GetPosition(ref Position actualPosition)
{
actualPosition = CurrentPosition;
}
// NOT SUPPORTED: Complex data types as return value
[User]
public Position NotSupported_GetPositionReturningTheStructure()
{
return CurrentPosition;
}
}
}