Unibrain API-810 User Manual Page 61

  • Download
  • Add to my manuals
  • Print
  • Page
    / 97
  • Table of contents
  • BOOKMARKS
  • Rated. / 5. Based on customer reviews
Page view 60
61
Visual Basic 6.0 syntax
Dim HasAuto As Boolean
HasAuto = Feature.HasAuto
C++ syntax
VARIANT_BOOL bHasAuto;
HRESULT hr = pIFeature->get_HasAuto(&bAuto);
HasManual property
Prototype
Boolean HasManual
Comments
This is a read-only property that will return whether this FireiXFeature supports setting its value
manually, through the Value property.
If this property is False, the Value property of FireiXFeature should not be set, otherwise an error would
occur. It could still be read though; the CanRead property can be used to determine that.
Visual Basic 6.0 syntax
Dim HasManual As Boolean
HasManual = Feature.HasManual
C++ syntax
VARIANT_BOOL bHasManual;
HRESULT hr = pIFeature->get_HasManual(&bHasManual);
MinValue property
Prototype
Long MinValue
Comments
This is a read-only property that will return the minimum value that can be set to this FireiXFeature,
through the Value property.
Visual Basic 6.0 syntax
Dim MinValue As Long
MinValue = Feature.MinValue
C++ syntax
LONG lMinValue;
HRESULT hr = pIFeature->get_MinValue(&lMinValue);
MaxValue property
Prototype
Long MaxValue
Page view 60
1 2 ... 56 57 58 59 60 61 62 63 64 65 66 ... 96 97

Comments to this Manuals

No comments