亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? panel3d.ctl

?? 圖形界面面板
?? CTL
?? 第 1 頁 / 共 2 頁
字號:
  End With
End Sub

Public Property Get Caption() As String
Attribute Caption.VB_Description = "標題文本"
Attribute Caption.VB_ProcData.VB_Invoke_Property = ";外觀"
Attribute Caption.VB_UserMemId = -518
Attribute Caption.VB_MemberFlags = "200"
  Caption = mCaption
End Property

Public Property Let Caption(ByVal vNewValue As String)
  mCaption = vNewValue
  Refresh
  PropertyChanged "Caption"
End Property

Public Property Get RLCaption() As String
Attribute RLCaption.VB_ProcData.VB_Invoke_Property = "ppgRLCaption;外觀"
  RLCaption = mRLCaption
End Property

Public Property Let RLCaption(ByVal vNewValue As String)
  mRLCaption = vNewValue
  Refresh
  PropertyChanged "RLCaption"
End Property

Public Property Get Alignment() As PositionConstants
Attribute Alignment.VB_Description = "文本對齊方式"
Attribute Alignment.VB_ProcData.VB_Invoke_Property = ";雜項"
  Alignment = mAlignment
End Property

Public Property Let Alignment(ByVal vNewValue As PositionConstants)
  If Between(vNewValue, posLeftTop, posRightBottom) Then
    mAlignment = vNewValue
    Refresh
    PropertyChanged "Alignment"
  End If
End Property

Public Property Get Font3D() As Font3DConstants
Attribute Font3D.VB_Description = "文本字體的三維效果"
Attribute Font3D.VB_ProcData.VB_Invoke_Property = ";字體"
  Font3D = mFont3D
End Property

Public Property Let Font3D(ByVal vNewValue As Font3DConstants)
  If Between(vNewValue, 0, 9) Then
    mFont3D = vNewValue
    Refresh
    PropertyChanged "Font3D"
  End If
End Property

Public Property Get ForeColor() As OLE_COLOR
Attribute ForeColor.VB_Description = "標題文本的前景顏色"
Attribute ForeColor.VB_ProcData.VB_Invoke_Property = ";外觀"
Attribute ForeColor.VB_UserMemId = -513
  ForeColor = mForeColor
End Property

Public Property Let ForeColor(ByVal vNewValue As OLE_COLOR)
  mForeColor = vNewValue
  Refresh
  PropertyChanged "ForeColor"
End Property

Public Property Get OutLine() As Boolean
Attribute OutLine.VB_Description = "有/無外框"
Attribute OutLine.VB_ProcData.VB_Invoke_Property = ";外觀"
  OutLine = mOutLine
End Property

Public Property Let OutLine(ByVal vNewValue As Boolean)
  mOutLine = vNewValue
  Refresh
  PropertyChanged "OutLine"
End Property

Public Property Get BevelInner() As Control3DConstants
Attribute BevelInner.VB_Description = "內層凹/凸效果"
Attribute BevelInner.VB_ProcData.VB_Invoke_Property = ";外觀"
  BevelInner = mBevelInner
End Property

Public Property Let BevelInner(ByVal vNewValue As Control3DConstants)
  mBevelInner = vNewValue
  Refresh
  PropertyChanged "BevelInner"
End Property

Public Property Get BevelOuter() As Control3DConstants
Attribute BevelOuter.VB_Description = "外層凹/凸效果"
Attribute BevelOuter.VB_ProcData.VB_Invoke_Property = ";外觀"
  BevelOuter = mBevelOuter
End Property

Public Property Let BevelOuter(ByVal vNewValue As Control3DConstants)
  mBevelOuter = vNewValue
  Refresh
  PropertyChanged "BevelOuter"
End Property

Public Property Get BevelWidth() As Integer
Attribute BevelWidth.VB_Description = "內外層凹/凸寬度"
Attribute BevelWidth.VB_ProcData.VB_Invoke_Property = ";外觀"
  BevelWidth = mBevelWidth
End Property

Public Property Let BevelWidth(ByVal vNewValue As Integer)
  If vNewValue >= 1 Then
    mBevelWidth = vNewValue
    Refresh
    PropertyChanged "BevelWidth"
  End If
End Property

Public Property Get BorderWidth() As Integer
Attribute BorderWidth.VB_Description = "邊框(內外層間部分)寬度"
Attribute BorderWidth.VB_ProcData.VB_Invoke_Property = ";外觀"
Attribute BorderWidth.VB_UserMemId = -505
  BorderWidth = mBorderWidth
End Property

Public Property Let BorderWidth(ByVal vNewValue As Integer)
  If vNewValue >= 0 Then
    mBorderWidth = vNewValue
    Refresh
    PropertyChanged "BorderWidth"
  End If
End Property

Private Sub Box3D(ByVal BevelStyle As Control3DConstants, ByVal nBevel As Integer)
  Dim I As Integer
  Dim LTColor As OLE_COLOR
  Dim BRColor As OLE_COLOR
  
  On Error Resume Next
  
  Select Case BevelStyle
    Case c3dNone
      nBevel = 0
    Case c3dInsert
      LTColor = &H808080 Or DisabledColor
      BRColor = &HFFFFFF Or DisabledColor
    Case c3dRaised
      LTColor = &HFFFFFF Or DisabledColor
      BRColor = &H808080 Or DisabledColor
  End Select
  
  For I = 1 To nBevel
    UserControl.DrawWidth = 1
    UserControl.Line (L, T + H - 15)-Step(0, 15 - H), LTColor
    UserControl.Line -Step(W - 15, 0), LTColor
    UserControl.Line -Step(0, H - 15), BRColor
    UserControl.Line -Step(-W, 0), BRColor
    ReduceDrawArea 15
  Next I
End Sub

Private Sub ReduceDrawArea(ByVal Value As Integer)
  L = L + Value
  T = T + Value
  W = W - Value - Value
  H = H - Value - Value
End Sub

Public Property Get BorderColor() As OLE_COLOR
Attribute BorderColor.VB_Description = "邊框(內外層間部分)顏色"
Attribute BorderColor.VB_ProcData.VB_Invoke_Property = ";外觀"
Attribute BorderColor.VB_UserMemId = -503
  BorderColor = mBorderColor
End Property

Public Property Let BorderColor(ByVal vNewValue As OLE_COLOR)
  mBorderColor = vNewValue
  Refresh
  PropertyChanged "BorderColor"
End Property

Public Sub BoxBevel(ByVal nL As Integer, ByVal nT As Integer, ByVal nW As Integer, ByVal nH As Integer, ByVal nBevel As Integer)
  If nBevel <> 0 Then
    L = nL
    T = nT
    W = nW
    H = nH
    Box3D IIf(nBevel > 0, 2, 1), Abs(nBevel)
  End If
End Sub

Public Property Get Font() As Font
Attribute Font.VB_Description = "字體"
Attribute Font.VB_ProcData.VB_Invoke_Property = ";字體"
Attribute Font.VB_UserMemId = -512
  Set Font = UserControl.Font
End Property

Public Property Set Font(ByVal vNewValue As Font)
  On Error Resume Next
  Set UserControl.Font = vNewValue
  Refresh
  PropertyChanged "Font"
End Property

Public Property Get ShadowColor() As OLE_COLOR
Attribute ShadowColor.VB_Description = "使用ShadowAround三維特性時的陰影顏色"
Attribute ShadowColor.VB_ProcData.VB_Invoke_Property = ";外觀"
  ShadowColor = mShadowColor
End Property

Public Property Let ShadowColor(ByVal vNewValue As OLE_COLOR)
  mShadowColor = vNewValue
  Refresh
  PropertyChanged "ShadowColor"
End Property

Public Property Get BackColor() As OLE_COLOR
Attribute BackColor.VB_Description = "背景顏色"
Attribute BackColor.VB_ProcData.VB_Invoke_Property = ";外觀"
Attribute BackColor.VB_UserMemId = -501
  BackColor = mBackColor
End Property

Public Property Let BackColor(ByVal vNewValue As OLE_COLOR)
  mBackColor = vNewValue
  Refresh
  PropertyChanged "BackColor"
End Property

Public Property Get Version() As String
Attribute Version.VB_Description = "版本信息"
Attribute Version.VB_ProcData.VB_Invoke_Property = ";雜項"
  Version = cVersion
End Property

Public Property Let Version(ByVal vNewValue As String)
  '
End Property

Public Property Get Enabled() As Boolean
Attribute Enabled.VB_Description = "是否響應用戶事件"
Attribute Enabled.VB_ProcData.VB_Invoke_Property = ";行為"
Attribute Enabled.VB_UserMemId = -514
  Enabled = mEnabled
End Property

Public Property Let Enabled(ByVal vNewValue As Boolean)
  mEnabled = vNewValue
  If UserControl.Ambient.UserMode Then UserControl.Enabled = mEnabled
  Refresh
  PropertyChanged "Enabled"
End Property

Public Property Get Visible() As Boolean
Attribute Visible.VB_Description = "是否可見"
Attribute Visible.VB_ProcData.VB_Invoke_Property = ";行為"
  Visible = mVisible
End Property

Public Property Let Visible(ByVal vNewValue As Boolean)
  mVisible = vNewValue
  PropertyChanged "Visible"
End Property

Private Function RoundToPixel(ByVal Value As Single) As Integer
  RoundToPixel = ((Value + 14) \ 15) * 15
End Function

Public Property Get FontName() As String
Attribute FontName.VB_MemberFlags = "400"
  FontName = UserControl.FontName
End Property

Public Property Let FontName(ByVal vNewValue As String)
  On Error Resume Next
  UserControl.FontName = vNewValue
  Refresh
  PropertyChanged "Font"
End Property

Public Property Get FontSize() As Single
Attribute FontSize.VB_MemberFlags = "400"
  FontSize = UserControl.FontSize
End Property

Public Property Let FontSize(ByVal vNewValue As Single)
  On Error Resume Next
  UserControl.FontSize = vNewValue
  Refresh
  PropertyChanged "Font"
End Property

Public Property Get FontBold() As Boolean
Attribute FontBold.VB_MemberFlags = "400"
  FontBold = UserControl.FontBold
End Property

Public Property Let FontBold(ByVal vNewValue As Boolean)
  UserControl.FontBold = vNewValue
  Refresh
  PropertyChanged "Font"
End Property

Public Property Get FontStrikethru() As Boolean
Attribute FontStrikethru.VB_MemberFlags = "400"
  FontStrikethru = UserControl.FontStrikethru
End Property

Public Property Let FontStrikethru(ByVal vNewValue As Boolean)
  UserControl.FontStrikethru = vNewValue
  Refresh
  PropertyChanged "Font"
End Property

Public Property Get FontUnderline() As Boolean
Attribute FontUnderline.VB_MemberFlags = "400"
  FontUnderline = UserControl.FontUnderline
End Property

Public Property Let FontUnderline(ByVal vNewValue As Boolean)
  UserControl.FontUnderline = vNewValue
  Refresh
  PropertyChanged "Font"
End Property

Public Property Get FontItalic() As Boolean
Attribute FontItalic.VB_MemberFlags = "400"
  FontItalic = UserControl.FontItalic
End Property

Public Property Let FontItalic(ByVal vNewValue As Boolean)
  UserControl.FontItalic = vNewValue
  Refresh
  PropertyChanged "Font"
End Property

Public Property Let Percents(ByVal vNewValue As Integer)
  If Not Between(vNewValue, 0, 100) Then vNewValue = 0
  mPercents = vNewValue
  Caption = IIf(mPercents > 0, mPercents & "%", "")
End Property

Public Property Get FloodColor() As OLE_COLOR
  FloodColor = mFloodColor
End Property

Public Property Let FloodColor(ByVal vNewValue As OLE_COLOR)
  mFloodColor = vNewValue
  Refresh
  PropertyChanged "FloodColor"
End Property

Private Function Between(ByVal Value, ByVal V1, ByVal V2) As Boolean
  Between = (Value >= V1) And (Value <= V2)
End Function

Public Property Get RichLabel() As Boolean
  RichLabel = mRichLabel
End Property

Public Property Let RichLabel(ByVal vNewValue As Boolean)
  mRichLabel = vNewValue
  Refresh
  PropertyChanged "RichLabel"
End Property

Public Property Get WordBorderDistance() As Integer
  WordBorderDistance = mWordBorderDistance
End Property

Public Property Let WordBorderDistance(ByVal vNewValue As Integer)
  If WordBorderDistance >= 0 Then
    mWordBorderDistance = vNewValue
    Refresh
    PropertyChanged "WordBorderDistance"
  End If
End Property

Public Property Get LinesDistance() As Integer
  LinesDistance = mLinesDistance
End Property

Public Property Let LinesDistance(ByVal vNewValue As Integer)
  If LinesDistance >= 0 Then
    mLinesDistance = vNewValue
    Refresh
    PropertyChanged "LinesDistance"
  End If
End Property
Private Sub UserControl_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
  RaiseEvent MouseDown(Button, Shift, X, Y)
End Sub

Public Property Get Align() As Integer
Attribute Align.VB_Description = "返回/設置一個值,決定對象在窗體上的顯示位置。"
  Align = mAlign
End Property

Public Property Let Align(ByVal New_Align As Integer)
  mAlign = New_Align
  PropertyChanged "Align"
End Property

Private Sub UserControl_Click()
  RaiseEvent Click
End Sub

Private Sub UserControl_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
  RaiseEvent MouseMove(Button, Shift, X, Y)
End Sub

Public Property Get MousePointer() As Integer
Attribute MousePointer.VB_Description = "返回/設置當鼠標經過對象某一部分時鼠標的指針類型。"
  MousePointer = UserControl.MousePointer
End Property

Public Property Let MousePointer(ByVal New_MousePointer As Integer)
  UserControl.MousePointer() = New_MousePointer
  PropertyChanged "MousePointer"
End Property

Public Property Get MouseIcon() As Picture
Attribute MouseIcon.VB_Description = "設置一個自定義鼠標圖標。"
  Set MouseIcon = UserControl.MouseIcon
End Property

Public Property Set MouseIcon(ByVal New_MouseIcon As Picture)
  Set UserControl.MouseIcon = New_MouseIcon
  PropertyChanged "MouseIcon"
End Property

Private Sub UserControl_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
  RaiseEvent MouseUp(Button, Shift, X, Y)
End Sub

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久色.com| 美女www一区二区| 婷婷六月综合亚洲| 国产精品综合一区二区三区| 97se狠狠狠综合亚洲狠狠| 精品视频999| 国产性做久久久久久| 亚洲一区二区3| 久久先锋影音av鲁色资源网| 91久久线看在观草草青青 | 婷婷开心激情综合| 99久久精品免费| 国产亚洲精品精华液| 午夜成人在线视频| 中文一区二区完整视频在线观看| 日韩美女视频在线| 欧美日韩精品一区二区| 中文字幕亚洲欧美在线不卡| 国产精品一区二区91| 日韩三级高清在线| 三级亚洲高清视频| 欧美日韩成人在线| 亚洲制服丝袜av| 色偷偷久久人人79超碰人人澡| 久久九九影视网| 狠狠色综合色综合网络| 欧美一卡2卡3卡4卡| 日韩欧美资源站| 日韩vs国产vs欧美| 91精品国产色综合久久不卡蜜臀 | 国产高清不卡一区二区| 91精品国产色综合久久不卡蜜臀| 日韩精品最新网址| 丝瓜av网站精品一区二区| 欧美午夜电影网| 精品亚洲成a人| 蜜桃一区二区三区四区| 无码av中文一区二区三区桃花岛| 亚洲最大成人综合| 日本中文字幕一区二区视频| 午夜视频一区二区| 国产欧美日韩不卡| 91免费版在线| 91国产丝袜在线播放| 中文字幕色av一区二区三区| 国产精品色噜噜| 色诱亚洲精品久久久久久| 亚洲精品国产无套在线观| 欧美在线视频不卡| 日韩黄色一级片| 精品欧美一区二区三区精品久久| 韩国在线一区二区| 国产综合久久久久久鬼色| www.在线欧美| 亚洲综合色婷婷| 日本 国产 欧美色综合| 欧美精品一区二区三区在线| 国产成人av一区二区三区在线| 国产精品的网站| 91麻豆精品国产自产在线观看一区| 婷婷成人激情在线网| 精品国产成人在线影院| 91视频一区二区| 麻豆精品一区二区三区| 中文乱码免费一区二区| 日韩精品乱码av一区二区| 精品999在线播放| eeuss鲁片一区二区三区| 日韩在线一区二区三区| 久久久久久一级片| 色噜噜狠狠色综合欧洲selulu| 精品国产电影一区二区| 91福利在线导航| 精品无人码麻豆乱码1区2区 | 国产精品日韩成人| 婷婷久久综合九色综合伊人色| 欧美成人精品1314www| 欧美日本精品一区二区三区| 中文字幕五月欧美| 精品国内片67194| 色天使久久综合网天天| 麻豆精品一二三| 一区二区在线看| 国产丝袜欧美中文另类| 欧美亚洲国产一区二区三区| 国产一区二区三区综合| 亚洲国产综合在线| 国产精品不卡在线| 日韩精品在线网站| 欧美色视频一区| 成人黄色一级视频| 欧美国产精品专区| 欧美tickling网站挠脚心| 91精品1区2区| 99久久久国产精品免费蜜臀| 精品无人码麻豆乱码1区2区 | 国产剧情一区在线| 久久蜜桃av一区二区天堂| 亚洲女同ⅹxx女同tv| 成人伦理片在线| 国产精品毛片无遮挡高清| www.日韩精品| 三级影片在线观看欧美日韩一区二区| 欧美精品自拍偷拍| 精品一二线国产| 7777精品伊人久久久大香线蕉经典版下载| 国产成人av电影在线观看| 日本午夜精品一区二区三区电影| 中文字幕一区二区三区精华液| 久久久精品2019中文字幕之3| 精品国产一区二区国模嫣然| 欧美剧情片在线观看| 一本久道中文字幕精品亚洲嫩| 国产精品理论在线观看| 日本一区二区综合亚洲| 国产日韩欧美精品一区| 国产欧美日韩亚州综合| 成人黄色电影在线| kk眼镜猥琐国模调教系列一区二区 | 亚洲天堂成人在线观看| 国产一区二区三区高清播放| 国产一区二区女| 国产成人精品三级麻豆| 欧美在线啊v一区| 欧美精品在线观看播放| 国产成人综合网| 日韩精品电影一区亚洲| 日韩精品成人一区二区三区| 亚洲电影视频在线| 欧美视频自拍偷拍| 欧美精品 国产精品| 91精品国产91久久综合桃花| 欧美电视剧在线观看完整版| 日韩欧美亚洲国产另类| 精品伦理精品一区| 中文字幕成人av| 一区二区三区免费| 天天做天天摸天天爽国产一区 | 丝袜亚洲精品中文字幕一区| 首页国产欧美久久| 中文久久乱码一区二区| 伊人性伊人情综合网| 日本视频一区二区| 狠狠色丁香九九婷婷综合五月| 国产成人自拍在线| 欧洲精品一区二区三区在线观看| 欧美日本视频在线| 国产精品青草久久| 亚洲一区影音先锋| www.欧美日韩| 91久久一区二区| 久久午夜色播影院免费高清| 亚洲人成7777| 九九国产精品视频| 91黄色激情网站| 2欧美一区二区三区在线观看视频 337p粉嫩大胆噜噜噜噜噜91av | 国内精品国产三级国产a久久| 91在线观看成人| 欧美大胆一级视频| 亚洲在线成人精品| 国产成人精品三级麻豆| 欧美精品乱人伦久久久久久| 亚洲自拍偷拍图区| 国产又粗又猛又爽又黄91精品| 91视频免费看| 国产亚洲精品精华液| 免费人成在线不卡| 色网站国产精品| 国产农村妇女毛片精品久久麻豆| 亚洲第一在线综合网站| 99re成人在线| 欧美精品一区二区三区一线天视频 | 国产精品久久精品日日| 日韩中文字幕区一区有砖一区 | 中文字幕不卡在线观看| 日韩**一区毛片| 99精品视频一区二区| 欧美精品一区二区三| 不卡高清视频专区| 97精品国产97久久久久久久久久久久| 欧美成人vr18sexvr| 五月婷婷综合在线| 欧美性视频一区二区三区| 国产精品久久久久久久久动漫| 激情国产一区二区| 欧美一级黄色片| 日韩二区三区四区| 国产午夜一区二区三区| 5566中文字幕一区二区电影| 一区二区三区欧美在线观看| gogogo免费视频观看亚洲一| 国产人成一区二区三区影院| 狠狠网亚洲精品| 久久婷婷综合激情| 国产在线不卡一区| 国产日韩欧美在线一区| 国产二区国产一区在线观看| 成a人片国产精品| 亚洲欧洲日韩av| 91丨porny丨最新|