# Dialog Item Boolean Value

Grammar — Boolean value of property of dialogItem for player
FlagsNative | Function | Internal

# Arguments

  • int<control> — Dialog Item
  • int<preset::ControlProperty> — Property
  • int — Player

Returns — bool

native bool DialogControlGetPropertyAsBool(
	int control,
	int property,
	int player,
);

Category: Dialog / Dialog Item Values / Internal

# Examples

mods/core.sc2modbase.sc2data/TriggerLibs/NativeLib.galaxy:2751

    // Automatic Variable Declarations
    // Implementation
    return DialogControlGetPropertyAsBool(lp_dialogItem, c_triggerControlPropertyChecked, lp_player);
}

mods/core.stormmodbase.stormdata/TriggerLibs/NativeLib.galaxy:2204

    // Automatic Variable Declarations
    // Implementation
    return DialogControlGetPropertyAsBool(lp_dialogItem, c_triggerControlPropertyChecked, lp_player);
}