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
Defines the default text font.
Get
Put
PutRef
object
refFontObj
Defines the default text font.
The Font property defines the default text font.
All files/folders use the defined font. Individual files/folders can override the font using the Folder.Font property.
Dim NewFont As New Font("Times New Roman", 12, FontStyle.Regular) AxSftDirectory1.Font = NewFont
SftDirectory1.Font.Name = "Times New Roman" SftDirectory1.Font.Size = 12
Font newFont = new Font("Times New Roman", 12, FontStyle.Regular); axSftDirectory1.Font = newFont;
ISftDirectoryPtr vDir1 = m_Dir1.GetControlUnknown(); IFontDispPtr pFontDisp = vDir1->GetFont(); IFontPtr pFont = pFontDisp; pFont->put_Name(L"Times New Roman"); CY sz; sz.int64 = 10000L*12; pFont->put_Size(sz);
See Also SftDirectory Object | Object Hierarchy