BasisCore

Related Topics

  • Overview
  • Release Note
  • Tutorials
  • Fundamentals
    • Commands
      • Remarks
      • Commands Type
      • Basic Concepts
      • Related Topics
        • CommandBase Class
        • Renderable Commands
        • Source Commands
        • Collection Commands
        • Management Commands
        • Expression
        • [## Notation
        • Data Binding
        • Built-in Commands
    • Host
BasisCore
  • Docs »
  • Fundamentals »
  • Commands »
  • Renderable Commands »
  • Print Command
  • View page source

Print Command¶

Use data source for simple and flat render process and generate result.

1
2
3
<basis core="print">
   [...]
</basis>

Important

The print command inherit from Renderable Commands base class.

Example¶

1# Create simple command¶

1
2
3
4
5
6
7
<basis  core="print" datamembername="db.user-info">
   <face>
      First Name is :@fname
      <br/>
      Last Name is :@lname
   </face>
</basis>

Data source db.user-info is:

db.user-info¶

fname

lname

s.alireza

qamsari

Result is:

1
2
3
First Name is s.alireza
<br/>
Last Name is :qamsari
Next Previous

© Copyright 2020, Manzoomeh.ir

Built with Sphinx using a theme provided by Read the Docs.