GCIM 名前空間 > GcCalendar タイプ : GetControlStyle メソッド |
var instance = new GCIM.GcCalendar(container, id); var value; // Type: Style value = instance.GetControlStyle();
function GetControlStyle() : Style;
// コントロールのスタイルを設定します。 var calendar = FindIMControl("GcCalendar1"); var controlStyle = calendar.GetControlStyle(); controlStyle.SetBorderStyle("solid"); controlStyle.SetBorderWidth(1); controlStyle.SetBorderColor("gray"); calendar.SetUseControlStyle(true);