ControlSystem.VecPoint.ToString C# (CSharp) Method

ToString() public method

The position in string format.
public ToString ( ) : string
return string
        public override string ToString()
        {
            return "("+iX + "," + iY + "," + iZ + "," + iPitch + "," + iRoll + ")";
        }