home *** CD-ROM | disk | FTP | other *** search
Wrap
<?xml version="1.0" encoding="utf-8"?> <html><head><title>Funkce LCase [Runtime]</title><meta name="filename" content="text/sbasic/common/03120302"/><meta name="language" content="en-US"/><help:css-file-link xmlns:help="http://openoffice.org/2000/help"/><!--The CSS style header method for setting styles--><style type="text/css"> p.P1{ } p.P2{ } span.T1{ font-weight:bold;} </style></head><body> <help:to-be-embedded Eid="lcase" xmlns:help="http://openoffice.org/2000/help"><a name="lcase"/> <p class="Head1"><help:link Id="66522">Funkce LCase [Runtime]</help:link></p> <p class="Paragraph">Převede všechny znaky v řetězci na malá písmena. Funkce převede pouze velká písmena; všechna malá písmena a znaky, které nepředstavují písmena, se nezmění.</p> </help:to-be-embedded> <p class="Paragraph">Viz také: Funkce <help:link Id="66399" Eid="ucase" xmlns:help="http://openoffice.org/2000/help">UCase</help:link></p> <p class="Paragraph"><span class="T1">Syntaxe</span>:</p> <p class="Paragraph">LCase (Text As String) <help:key-word value="LCase" tag="kw66522_1" xmlns:help="http://openoffice.org/2000/help"/></p> <p class="Paragraph"><span class="T1">Vrácená hodnota</span>:</p> <p class="Paragraph">Typu String</p> <p class="Paragraph"><span class="T1">Parametr</span>:</p> <p class="Paragraph">Text: Libovolný řetězec, který má být převeden.</p> <p class="P2">Příklad:</p> <p class="PropText">Sub ExampleLUCase</p> <p class="PropText">Dim sVar As String</p> <p class="PropText">sVar = "Las Vegas"</p> <p class="PropText">Print LCase(sVar) REM Returns "Las Vegas"</p> <p class="PropText">Print UCase(sVar) REM Returns "LAS VEGAS"</p> <p class="PropText">end Sub</p> <p class="PropText"/> </body></html>