initial commit
This commit is contained in:
		
							
								
								
									
										41
									
								
								Viewer/TrendViewer/UControl/TrendCtrlII/CUserCursor.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										41
									
								
								Viewer/TrendViewer/UControl/TrendCtrlII/CUserCursor.cs
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,41 @@ | ||||
| using System; | ||||
| using System.Collections.Generic; | ||||
| using System.Text; | ||||
|  | ||||
| namespace TrendCtrlII | ||||
| { | ||||
|     public partial class CUserCursor | ||||
|     { | ||||
|         private short _idx = 0; | ||||
|         private Int64 _time = 0; | ||||
|         private Single _value = 0; | ||||
|         private Single _newx = 0; | ||||
|  | ||||
|         public CUserCursor(short pidx, Int64 ptime, Single px) | ||||
|         { | ||||
|             _idx = pidx; | ||||
|             _time = ptime; | ||||
|             _newx = px; | ||||
|         } | ||||
|         public Int64 Time | ||||
|         { | ||||
|             get { return this._time; } | ||||
|             set { this._time = value; } | ||||
|         } | ||||
|         public short Idx | ||||
|         { | ||||
|             get { return this._idx; } | ||||
|             set { this._idx = value; } | ||||
|         } | ||||
|         public Single Value | ||||
|         { | ||||
|             get { return this._value; } | ||||
|             set { this._value = value; } | ||||
|         } | ||||
|         public Single Newx | ||||
|         { | ||||
|             get { return this._newx; } | ||||
|             set { this._newx = value; } | ||||
|         } | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user
	 Arin(asus)
					Arin(asus)