Leadtools.Wia Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
SystemTimeValue Property
See Also 
Leadtools.Wia Namespace > WiaSession Class : SystemTimeValue Property



Gets or sets a DateTime type WIA property value.

Syntax

Visual Basic (Declaration) 
Public Property SystemTimeValue As Date
Visual Basic (Usage)Copy Code
Dim instance As WiaSession
Dim value As Date
 
instance.SystemTimeValue = value
 
value = instance.SystemTimeValue
C# 
public DateTime SystemTimeValue {get; set;}
C++/CLI 
public:
property DateTime SystemTimeValue {
   DateTime get();
   void set (DateTime value);
}

Return Value

The DateTime value.

Example

For an example, refer to WiaSession.GetPropertySystemTime.

Remarks

To get the DateTime type WIA property value from this property, call the GetPropertySystemTime method first to ensure this property contains a valid value. To set this property, provide it with your DateTime structure and then call the SetPropertySystemTime method.

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows 2000, Windows XP, Windows Vista, Windows Server 2003 family, Windows Server 2008 family

See Also