API15

JDocument/setTab: Difference between revisions

From Joomla! Documentation

m removing red link to edit, no existant pages
m preparing for archive only
 
Line 43: Line 43:


===Examples===
===Examples===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
  noresultsheader=\n
  noresultsheader=\n
  category=setTab
  category=setTab
  category=JDocument
  category=JDocument
  category=CodeExample
  namespace=CodeExample
  category=MethodExample
  category=MethodExample
  include=*
  include=*

Latest revision as of 00:30, 25 March 2017

Description

Sets the string used to indent HTML

[<! removed edit link to red link >]

<! removed transcluded page call, red link never existed >

Syntax

setTab($string)
Parameter Name Default Value Description
$string $string String used to indent ("\11", "\t", ' ', etc.). public

Returns

void

Defined in

libraries/joomla/document/document.php

Importing

jimport( 'joomla.document.document' );

Source Body

function setTab($string) {
        $this->_tab = $string;
}

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples

Code Examples