/// <summary> /// Set the padding for this frame. Padding introduces blank space on the inside /// edge of the frame. /// @param index Index of the frame to modify /// @param padding Frame top, bottom, left, and right padding ) /// /// </summary> public void framePadding(int index, RectSpacingI padding) { TorqueScriptTemplate.m_ts.fnGuiFrameSetCtrl_framePadding(_mSimObjectId, index, padding.AsString()); }
/// <summary> /// Set the padding for this frame. Padding introduces blank space on the inside /// edge of the frame. /// @param index Index of the frame to modify /// @param padding Frame top, bottom, left, and right padding ) /// /// </summary> public void framePadding(string guiframesetctrl, int index, RectSpacingI padding){ m_ts.fnGuiFrameSetCtrl_framePadding(guiframesetctrl, index, padding.AsString()); }
/// <summary> /// Return the integer character code value corresponding to the first character in the given string. /// ) /// /// </summary> public RectSpacingI dnt_testcase_14(RectSpacingI chr) { return new RectSpacingI(m_ts.fn_dnt_testcase_14(chr.AsString())); }