SftTree/DLL 7.5 - Tree Control
SftBox/OCX 5.0 - Combo Box Control
SftButton/OCX 3.0 - Button Control
SftMask/OCX 7.0 - Masked Edit Control
SftTabs/OCX 6.5 - Tab Control (VB6 only)
SftTree/OCX 7.5 - Tree Control
SftPrintPreview/DLL 2.0 - Print Preview Control (discontinued)
SftTree/DLL 7.5 - Tree Control
SftBox/OCX 5.0 - Combo Box Control
SftButton/OCX 3.0 - Button Control
SftDirectory 3.5 - File/Folder Control (discontinued)
SftMask/OCX 7.0 - Masked Edit Control
SftOptions 1.0 - Registry/INI Control (discontinued)
SftPrintPreview/OCX 1.0 - Print Preview Control (discontinued)
SftTabs/OCX 6.5 - Tab Control (VB6 only)
SftTree/OCX 7.5 - Tree Control
SftTabs/NET 6.0 - Tab Control (discontinued)
SftTree/NET 2.0 - Tree Control
Returns the SftBoxHeaders object.
Get
VB.NET | refHeadersObj = object.Headers As SftBoxHeaders |
VB | Set refHeadersObj = object.Headers As SftBoxHeaders |
C#.NET | SftBoxHeaders refHeadersObj = object.Headers; |
VC++ | ISftBoxHeaders* refHeadersObj = object->Headers; ISftBoxHeaders* refHeadersObj = object->GetHeaders(); |
C | HRESULT object->get_Headers(ISftBoxHeaders** refHeadersObj); |
object
refHeadersObj
Returns a reference to the control's SftBoxHeaders object.
The Headers property returns the SftBoxHeaders object.
The default properties and behavior of all column headers can be updated using the returned SftBoxColumns object.
A SftBoxHeader object for a specific column can be retrieved using the Header property.
End If
End Sub
Private Sub condHeaders_CheckedChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles condHeaders.CheckedChanged
' if this event occurs during form initialization, the activeX control
' may not yet be initialized completely, so we have to check for GetOcx()
If Not fontNames.GetOcx() Is Nothing Then
If condHeaders.Checked Then
fontNames.Headers.Main = True
fontNames.Headers.DropDown = False
fontStyles.Headers.Main = True
fontStyles.Headers.DropDown = False
fontSizes.Headers.Main = True
fontSizes.Headers.DropDown = False
Else
fontNames.Headers.Main = False
End Sub
Private Sub Command1_Click()
Unload Form1
End Sub
Private Sub CondHeaders_Click()
If CondHeaders.Value = 0 Then
FontNames.Headers.Main = False
FontNames.Headers.DropDown = True
FontStyles.Headers.Main = False
FontStyles.Headers.DropDown = True
FontSizes.Headers.Main = False
FontSizes.Headers.DropDown = True
Else
FontNames.Headers.Main = True
sampleText.Font = new Font(fontNames.Edit.Text, Convert.ToSingle(fontSizes.Edit.Text), style);
} else
sampleText.Text = "";
}
private void condHeaders_CheckedChanged(object sender, System.EventArgs e)
{
if (condHeaders.Checked) {
fontNames.Headers.Main = true;
fontNames.Headers.DropDown = false;
fontStyles.Headers.Main = true;
fontStyles.Headers.DropDown = false;
fontSizes.Headers.Main = true;
fontSizes.Headers.DropDown = false;
} else {
fontNames.Headers.Main = false;
// when the application's main window is not a dialog
SetIcon(m_hIcon, TRUE); // Set big icon
SetIcon(m_hIcon, FALSE); // Set small icon
// reset font for all combo boxes to use the form's
// default font
ISftBoxPtr vFontNames = m_FontNames.GetControlUnknown();
vFontNames->PutFont(NULL);
vFontNames->Headers->PutFont(NULL);
vFontNames->Edit->PutFont(NULL);
ISftBoxPtr vFontStyles = m_FontStyles.GetControlUnknown();
vFontStyles->PutFont(NULL);
vFontStyles->Headers->PutFont(NULL);
vFontStyles->Edit->PutFont(NULL);
ISftBoxPtr vFontSizes = m_FontSizes.GetControlUnknown();
vFontSizes->PutFont(NULL);
See Also SftBox Object | Object Hierarchy