Difference between revisions of "MLINE()"

From Lianjapedia
Jump to: navigation, search
 
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
==Purpose==
 
==Purpose==
 
Function to extract a line of text from a memo
 
Function to extract a line of text from a memo
 
  
 
==Syntax==
 
==Syntax==
 
MLINE(<memofield>,<expN>)
 
MLINE(<memofield>,<expN>)
 
  
 
==See Also==
 
==See Also==
[[HARDCR()]], [[MEMLINES()]], [[MEMOEDIT()]], [[MEMOLINE()]], [[MEMOREAD()]], [[MEMOTRAN()]], [[MEMOWRITE()]], [[MLCOUNT()]], [[SET MEMOWIDTH]], [[SET MEMOWINDOW]], [[TEXTEDIT()]]
+
[[HTML_TOPLAINTEXT()]], [[MEMLINES()]], [[MEMOLINE()]], [[MEMOREAD()]], [[MEMOTRAN()]], [[MEMOWRITE()]], [[MLCOUNT()]], [[SET MEMOWIDTH]]
 
+
  
 
==Description==
 
==Description==
 
The MLINE() function extracts a line of text from the specified <memofield>.  The <expN> specifies the line number in the range 1 to MEMLINES().  The length of the line extracted is set by the command SET MEMOWIDTH.
 
The MLINE() function extracts a line of text from the specified <memofield>.  The <expN> specifies the line number in the range 1 to MEMLINES().  The length of the line extracted is set by the command SET MEMOWIDTH.
 
  
 
==Example==
 
==Example==
 
<code lang="recital">
 
<code lang="recital">
 
use prospect
 
use prospect
set scroll to 4,15
 
@4,0 say " "
 
 
set memowidth to 40
 
set memowidth to 40
 
m_last = memlines(comp_hist)
 
m_last = memlines(comp_hist)
Line 26: Line 20:
 
     ? m_line
 
     ? m_line
 
next
 
next
set scroll to default 
 
 
</code>
 
</code>
  
 
==Products==
 
Recital Server, Recital
 
 
[[Category:Documentation]]
 
[[Category:Documentation]]
 
[[Category:Functions]]
 
[[Category:Functions]]
[[Category:Memos]]
 
 
[[Category:Memos Functions]]
 
[[Category:Memos Functions]]
 +
[[Category:Lianja VFP Extensions]]
 +
[[Category:VFP Function Extensions]]

Latest revision as of 09:27, 20 September 2016

Purpose

Function to extract a line of text from a memo

Syntax

MLINE(<memofield>,<expN>)

See Also

HTML_TOPLAINTEXT(), MEMLINES(), MEMOLINE(), MEMOREAD(), MEMOTRAN(), MEMOWRITE(), MLCOUNT(), SET MEMOWIDTH

Description

The MLINE() function extracts a line of text from the specified <memofield>. The <expN> specifies the line number in the range 1 to MEMLINES(). The length of the line extracted is set by the command SET MEMOWIDTH.

Example

use prospect
set memowidth to 40
m_last = memlines(comp_hist)
for n=1 to m_last
    m_line = mline(comp_hist,n)
    ? m_line
next