# Load Text Value

Grammar — Load key key of section section from bank bank as Text
FlagsNative | Function

Returns a Text value contained in the chosen Bank at the specified Key of the specified Section.

# Arguments

  • bank — Bank
  • string — Section
  • string — Key

Returns — text

native text BankValueGetAsText(
	bank b,
	string section,
	string key,
);

Category: [Bank / Store & Load](/galaxy/reference#bank-store &-load)

# Examples

# campaigns/libertystory.sc2campaign

CampaignLib.galaxy

// L8991
BankValueGetAsText(lp_sourceBank, lv__SectionName, (IntToString(lv_index) + "_1"))
// L8992
BankValueGetAsText(lp_sourceBank, lv__SectionName, (IntToString(lv_index) + "_2"))