Property VLAxisCapture.TVLAxisCapture.FrameRate

From Mitov Wiki Doc
(Difference between revisions)
Jump to: navigation, search
(Automated Syncronization with Documentation)
 
(Automated Syncronization with Documentation)
Line 10: Line 10:
 
=== Delphi: ===
 
=== Delphi: ===
 
<code>
 
<code>
'''property''' FrameRate : Real '''read''' FFrameRate '''write''' SetFrameRate;
+
'''property''' FrameRate : Real '''read''' FFrameRate '''write''' SetFrameRate '''default''' 15;
 
</code>
 
</code>
  
 
=== C++ Builder: ===
 
=== C++ Builder: ===
 
<code>
 
<code>
'''__property''' double FrameRate = { '''read'''=FFrameRate,  '''write'''=SetFrameRate };
+
'''__property''' double FrameRate = { '''read'''=FFrameRate,  '''write'''=SetFrameRate,  '''default'''=15 };
 
</code>
 
</code>
  

Revision as of 20:28, 10 June 2013

This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.

Class: TVLAxisCapture

Contents

Syntax

Delphi:

property FrameRate : Real read FFrameRate write SetFrameRate default 15;

C++ Builder:

__property double FrameRate = { read=FFrameRate, write=SetFrameRate, default=15 };

Summary

Specifies frame rate.

Description

Use this property to specify the desired frame rate for the capture.


Delphi example:

VLAxisCapture1.FrameRate := 30;

C++ Builder example:

VLAxisCapture1->FrameRate = 30;

Visual C++(MFC) example:

VLAxisCapture1.FrameRate = 30;

Visual C++/CLI example:

axisCapture1->FrameRate = 30;

C# example:

axisCapture1.FrameRate = 30;

VB example:

AxisCapture1.FrameRate = 30

Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox