Show Menu
Cheatography

Xojo - Windows - 2021 R3.1 Cheat Sheet by

Xojo - Grundlagen #01 - für Einsteiger

Variablen - Im Überblick

Code
Erklärung
Var name as string
Variable als String definieren
Var name as integer
Variable als Zahl definieren
Ganzza­hlige Werte verwenden 4 Byte für 32-Bit­-Apps und 8 Byte für 64-Bit­-Apps
Ganzza­hlwerte reichen von -2.147.48­3.648 bis 2.147.4­83.647 (32-Bi­t-Apps) oder -9.223.37­2.0­36.8­54.77­5.808 bis +9.223.37­2.0­36.8­54.77­5.807 (64-Bi­t-Apps)
Var name as double
Variable als Gleitk­omm­azahl definieren
Var name as boolean = true
Variable als boolescher Wert
true oder false
Var c As Color = Color.R­GB­(124, 124, 163)
Variable als Farbwert
im RGB Format
Var blueColor As Color = Color.Blue
Variable als Farbwert in Color Konstante
Var greenColor As Color = &c­00ff00
Variable als Farbwert in HEX Format
 

Variable - String

Code
Erklärung
Var name as String
Variable als String definieren
Var answer as String­="XY­Z"
Variable direkt definieren und füllen
answer = name + " is a " + occupation + "."
Verkettung durch + und Variable Name
Var title as String="cheMIST"
title=title.uppercase
Uppercase wandelt String in Großbu­chs­taben
Title = CHEMIST
Var title as String="cheMIST"
title=title.titlecase
Titlecase wandelt String nur erster Großbu­chs­taben
Title = Chemist
Var title as String="cheMIST"
title=title.lowercase
Lowercase wandelt String nur in Kleinb­uch­staben
Title = chemist
 

Comments

No comments yet. Add yours below!

Add a Comment

Your Comment

Please enter your name.

    Please enter your email address

      Please enter your Comment.