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 actual height of the image.
Get
VB.NET | HPix = object.ActualHeight As Integer |
VB | HPix = object.ActualHeight As Long |
C#.NET | int HPix = object.ActualHeight; |
VC++ | long HPix = object->ActualHeight; long HPix = object->GetActualHeight(); |
C | HRESULT object->get_ActualHeight(long* HPix); |
object
A SftPictureObject object.
HPix
Returns the actual height of the image.
The ActualHeight property returns the actual height of the image.
The SftPictureObject.Height property returns the desired image height, last defined by the application. The desired height is only used for certain image types (see SftPictureObject.Type).
Dim ItemIndex As Integer Dim Img As SftPictureObject ItemIndex = AxSftTree1.Items.Current If ItemIndex < 0 Then Exit Sub ' don't use images that are too large in the other areas Img = AxSftTree1.get_Cell(ItemIndex, 0).Image If Img.ActualHeight <= 20 And Img.ActualWidth <= 20 Then AxSftTree1.RowColumnHeader.Image = Img AxSftTree1.get_Header(1).Image = Img Else AxSftTree1.RowColumnHeader.Image.Clear() AxSftTree1.get_Header(1).Image.Clear() End If End Sub
Img.Appearance = sftImageSortAscDisabled Case Else ' nothing End Select End Sub Private Sub PropagateImage(ByVal ItemIndex As Integer, Img As SftPictureObject) ' don't use images that are too large in the other areas If Img.ActualHeight <= 20 And Img.ActualWidth < 20 Then SftTree1.Item(ItemIndex).Image = Img SftTree1.Item(ItemIndex).LabelImage = Img SftTree1.Item(ItemIndex).RowHeader.Image = Img End If End Sub Private Sub UpdatePictures(ByVal ItemIndex As Integer, ByVal Pic As StdPicture, ByVal Align As SftTreeHAlignConstants)
SftPictureObject Img; ItemIndex = axSftTree1.Items.Current; if (ItemIndex < 0) return; // don't use images that are too large in the other areas Img = axSftTree1.get_Cell(ItemIndex, 0).Image; if (Img.ActualHeight <= 20 && Img.ActualWidth <= 20) { axSftTree1.RowColumnHeader.Image = Img; axSftTree1.get_Header(1).Image = Img; } else { axSftTree1.RowColumnHeader.Image.Clear(); axSftTree1.get_Header(1).Image.Clear(); } }
if (m_Tree.m_hWnd) m_Tree.MoveWindow(0, 0, cx, cy); } void CPicturesDlg::PropagateImage(long ItemIndex, ISftPictureObjectPtr Img) { // don't use images that are too large in the other areas if (Img->ActualHeight <= 20 && Img->ActualWidth < 20) { m_vTree->Item[ItemIndex]->Image = Img; m_vTree->Item[ItemIndex]->LabelImage = Img; m_vTree->Item[ItemIndex]->RowHeader->Image = Img; } } void CPicturesDlg::UpdateBitmap(long ItemIndex, const CBitmap& bmp, SftTreeHAlignConstants Align) {
See Also SftPictureObject Object | Object Hierarchy