# Set Dialog Item Integer Value

Grammar — Set dialogItem property to value for players
FlagsNative | Action | Internal

# Arguments

  • int<control> — Dialog Item
  • int<preset::ControlProperty> — Property
  • playergroup — Players
  • int — Value

Returns — void

native void DialogControlSetPropertyAsInt(
	int control,
	int property,
	playergroup players,
	int value,
);

Category: Dialog / Dialog Item Values / Internal

# Examples

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

    // Automatic Variable Declarations
    // Implementation
    DialogControlSetPropertyAsInt(lp_dialogItem, c_triggerControlPropertyRotation, lp_players, (lp_rotation));
}

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

    // Automatic Variable Declarations
    // Implementation
    DialogControlSetPropertyAsInt(lp_dialogItem, c_triggerControlPropertyImageType, lp_players, (lp_imageType));
}

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

    // Automatic Variable Declarations
    // Implementation
    DialogControlSetPropertyAsInt(lp_dialogItem, c_triggerControlPropertyBlendMode, lp_players, (lp_blendMode));
}

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

    // Automatic Variable Declarations
    // Implementation
    DialogControlSetPropertyAsInt(lp_dialogItem, c_triggerControlPropertyRenderPriority, lp_players, lp_renderPriority);
}

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

    // Automatic Variable Declarations
    // Implementation
    DialogControlSetPropertyAsInt(lp_dialogItem, c_triggerControlPropertyRenderType, lp_players, (lp_renderType));
}

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

    // Automatic Variable Declarations
    // Implementation
    DialogControlSetPropertyAsInt(lp_dialogItem, c_triggerControlPropertyTeamColorIndex, lp_players, lp_index);
}

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

    // Automatic Variable Declarations
    // Implementation
    DialogControlSetPropertyAsInt(lp_dialogItem, c_triggerControlPropertyHotkey, lp_players, lp_hotkey);
}

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

    // Automatic Variable Declarations
    // Implementation
    DialogControlSetPropertyAsInt(lp_dialogItem, c_triggerControlPropertyAllowedButtons, lp_players, lp_allowedButtons);
}

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

    // Automatic Variable Declarations
    // Implementation
    DialogControlSetPropertyAsInt(lp_dialogItem, c_triggerControlPropertyAnimIndex, lp_players, lp_index);
}

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

    // Automatic Variable Declarations
    // Implementation
    DialogControlSetPropertyAsInt(lp_dialogItem, c_triggerControlPropertyPlayerId, lp_players, lp_playerId);
}

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

    // Automatic Variable Declarations
    // Implementation
    DialogControlSetPropertyAsInt(lp_dialogItem, c_triggerControlPropertyRotation, lp_players, (lp_rotation));
}

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

    // Automatic Variable Declarations
    // Implementation
    DialogControlSetPropertyAsInt(lp_dialogItem, c_triggerControlPropertyImageType, lp_players, (lp_imageType));
}

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

    // Automatic Variable Declarations
    // Implementation
    DialogControlSetPropertyAsInt(lp_dialogItem, c_triggerControlPropertyBlendMode, lp_players, (lp_blendMode));
}

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

    // Automatic Variable Declarations
    // Implementation
    DialogControlSetPropertyAsInt(lp_dialogItem, c_triggerControlPropertyRenderPriority, lp_players, lp_renderPriority);
}

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

    // Automatic Variable Declarations
    // Implementation
    DialogControlSetPropertyAsInt(lp_dialogItem, c_triggerControlPropertyRenderType, lp_players, (lp_renderType));
}

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

    // Automatic Variable Declarations
    // Implementation
    DialogControlSetPropertyAsInt(lp_dialogItem, c_triggerControlPropertyTeamColorIndex, lp_players, lp_index);
}

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

    // Automatic Variable Declarations
    // Implementation
    DialogControlSetPropertyAsInt(lp_dialogItem, c_triggerControlPropertyHotkey, lp_players, lp_hotkey);
}

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

    // Automatic Variable Declarations
    // Implementation
    DialogControlSetPropertyAsInt(lp_dialogItem, c_triggerControlPropertyAllowedButtons, lp_players, lp_allowedButtons);
}

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

    // Automatic Variable Declarations
    // Implementation
    DialogControlSetPropertyAsInt(lp_dialogItem, c_triggerControlPropertyAnimIndex, lp_players, lp_index);
}

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

    // Automatic Variable Declarations
    // Implementation
    DialogControlSetPropertyAsInt(lp_dialogItem, c_triggerControlPropertyPlayerId, lp_players, lp_playerId);
}