Difference between revisions of "Midware TMWBuffer.GetStreamField"
Jump to navigation
Jump to search
(Created page with ' Main page -> Midware component reference -> TMWBuffer -> [[Midware_TMWBuffer.GetStreamField | GetStreamFi…') |
|||
Line 3: | Line 3: | ||
== Definition == | == Definition == | ||
− | + | <syntaxhighlight lang="delphi"> | |
+ | type | ||
+ | TMWFieldType = (mwString, mwBlob); | ||
+ | |||
+ | function GetStreamField(FieldNb : Integer; Data : TStream; var FieldType : TMWFieldType) : integer; | ||
+ | </syntaxhighlight> | ||
== Description == | == Description == | ||
Get a stream (blob) field value from the buffer. Same as the Fields[] property but works with blob fields. | Get a stream (blob) field value from the buffer. Same as the Fields[] property but works with blob fields. |
Latest revision as of 15:03, 14 May 2011
Main page -> Midware component reference -> TMWBuffer -> GetStreamField
Definition
<syntaxhighlight lang="delphi"> type TMWFieldType = (mwString, mwBlob);
function GetStreamField(FieldNb : Integer; Data : TStream; var FieldType : TMWFieldType) : integer; </syntaxhighlight>
Description
Get a stream (blob) field value from the buffer. Same as the Fields[] property but works with blob fields.