My program doesn't have bugs. It just develops random features.

UE3:WebAdminSettings (UT3)

From Unreal Wiki, The Unreal Engine Documentation Site
Jump to: navigation, search
UT3 Object >> Settings >> WebAdminSettings
Package: 
WebAdmin
Direct subclasses:
GeneralSettings, UTGameSettings

Base class for all WebAdminSettings instances that are include with the WebAdmin package. You can use it as base class for your own WebAdmin configuration classes, but that imposes a dependency on the WebAdmin package. It's simply best to create a subclass of Settings and copy the SetSpecialValue(...) implementation from this class to your own.

IMPORTANT! The WebAdmin is an optional server-side only package. Do not introduce a dependency on this package from a package that a client needs to download in order to play your mod.

Copyright 2008 Epic Games, Inc. All Rights Reserved

Author: Michiel 'elmuerte' Hendriks

Instance functions

GetFloatPropertyByName

protected function bool GetFloatPropertyByName (name prop, out float value)


GetIntPropertyByName

protected function bool GetIntPropertyByName (name prop, out int value)


GetStringPropertyByName

protected function bool GetStringPropertyByName (name prop, out string value)


init

function init ()


save

function save ()


saveInternal

protected function saveInternal ()


SetFloatPropertyByName

protected function bool SetFloatPropertyByName (name prop, float value)


SetIntPropertyByName

protected function bool SetIntPropertyByName (name prop, int value)


SetSpecialValue

function SetSpecialValue (name PropertyName, string NewValue)

Overrides: Object.SetSpecialValue


SetStringPropertyByName

protected function bool SetStringPropertyByName (name prop, string value)