久久精品国产精品国产精品污,男人扒开添女人下部免费视频,一级国产69式性姿势免费视频,夜鲁夜鲁很鲁在线视频 视频,欧美丰满少妇一区二区三区,国产偷国产偷亚洲高清人乐享,中文 在线 日韩 亚洲 欧美,熟妇人妻无乱码中文字幕真矢织江,一区二区三区人妻制服国产

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

一个人的朝圣深度感悟_朝圣之末找到更强大的WordWrap函数

發布時間:2024/3/12 编程问答 31 豆豆
生活随笔 收集整理的這篇文章主要介紹了 一个人的朝圣深度感悟_朝圣之末找到更强大的WordWrap函数 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

一個人的朝圣深度感悟

What Started It All

是什么開始了

I had an instance recently where I needed to take text from a textbox on a VBA form and split the text into separate lines to send to a zebra printer. ?The catch was that I needed the text to break at the same line points as the VBA textbox. ?The textbox was configured with multiline and wordwrap enabled. ?Searching all over the internet for a function or idea to accomplish this task, I found plenty of examples of wrapping text based on already included carriage returns or just of a space and character count, but not what I needed. ?A VBA textbox may or may not have carriage returns and it splits text on more than just spaces. ?

最近我有一個實例,我需要從VBA表單上的文本框中獲取文本并將文本拆分成單獨的行以發送到Zebra打印機。 問題是我需要文本在與VBA文本框相同的行點處中斷。 文本框已配置為啟用多行和自動換行。 在Internet上搜索用于完成此任務的功能或構想,我發現了很多基于已經包含回車符或僅包含空格和字符數來包裝文本的示例,但不是我所需要的。 VBA文本框可能有回車符,也可能沒有回車符,它會在多個空格上分割文本。

This led me on a quest to build a word wrap function mimicking the wrapping of a textbox. ?Working through coding and testing, I ended up creating a few different versions. ?The earlier versions were better than what I had found, but not good enough for my needs. ?They are posted here in case they are good enough for you. ?The original function returned data in a string array, but it was easy to adjust it to return as single string with carriage returns to break apart each line. ?That code is also included.

這使我開始尋求構建模仿文字框自動換行的自動換行功能。 通過編碼和測試,我最終創建了幾個不同的版本。 較早的版本比我發現的要好,但不足以滿足我的需求。 如果它們對您足夠好,則會在此處發布。 原始函數以字符串數組的形式返回數據,但是很容易將其調整為帶有回車符的單個字符串以將每一行分開。 該代碼也包括在內。

Breakdown of the basic code:

基本代碼明細:

A textbox has a variety of rules on how it separates text. ?The first step is to take the text and split it into an array based on already defined line feeds. ?Use the line feed (vbLf) as this will catch user entered returns from both Enter Key (If EnterKeyBehavior = True) and Cntrl-Enter (if EnterKey Behavior=False).

文本框對于如何分隔文本具有多種規則。 第一步是獲取文本并將其根據已定義的換行符拆分為一個數組。 使用換行符(vbLf),因為它將捕獲用戶從Enter鍵(如果EnterKeyBehavior = True)和Cntrl-Enter(如果EnterKey Behavior = False)輸入的返回值。

strLineData = Split(TextToWrap, vbLf) ' This is the RegEx List for Characters that should be grouped with the text that follows them ' ${(<[\ - Have to use escape character "\" for ] and \ strStartGroup = "${(<\[\\" ' This is the RegEx List for Characters that should be grouped with the text the preceeds them ' !)}%>?-] - Have to use escape character "\" for - and ] strEndGroup = "!)}%>?\-\]" ' [] = Group. Find Anything listed in this group. ? = Find 0 to 1 instances strRegPattern = "[" & strStartGroup & "]?" ' Now grab all characters that are not part of special list and no spaces \s ' [] = Group. Find Anything listed in this group. + = Find 1 to many instances. ' Equates to finding whole words including some special characters (those not in list since negative comparison) strRegPattern = strRegPattern & "[^\s" & strStartGroup & strEndGroup & "]+" ' [] = Group. Find Anything listed in this group. ? = Find 0 to 1 instances strRegPattern = strRegPattern & "[" & strEndGroup & "]?" objRegExp.Pattern = strRegPattern Set objWordList = objRegExp.Execute(strLine)

The first function I created calculated the width of each line by the number of characters per line. ?These can work well for you if you are using a fixed width font. ?They are simplier and will run slightly faster. ?

我創建的第一個函數通過每行的字符數來計算每行的寬度。 如果您使用的是固定寬度的字體,則這些字體對您來說效果很好。 它們比較簡單,運行速度會稍快。

I have included a VBScript version using late binding. ?

我已經包括了使用后期綁定的VBScript版本。

WordWrapByCharacterToArray Function:

WordWrapByCharacterToArray 功能:

Here is the first function. ?To use this function, send it the text that you want word wrapped and the maximum number of characters per line. ?It will return a string array with each line as a separate element in the array.

這是第一個功能。 要使用此功能,請向其發送您要自動換行的文本以及每行最大字符數。 它將返回一個字符串數組,其中每一行作為數組中的單獨元素。

Example Usage:

用法示例:

Dim strLines() As String strLines = WordWrapByCharacterToArray(TextToWrap:=TextBox1.Text, LengthOfLine:=20) For i = 0 To UBound(strLines)Debug.Print strLines(i) Next '--------------------------------------------------------------------------------------- ' Function : WordWrapByCharacterToArray ' Date : 03/21/2012 ' Purpose : Will Return a String array of line data wrapped at proper break points ' for a given line length as determined by the number of characters. ' It uses the same rules as a VBA text box ' ' Usage : Set a string array = to WordWrapByCharacterToArray sending WordWrapByCharacterToArray ' your text and maximum length for each line ' Example: ' Dim strLines() as string ' strLines = WordWrapByCharacterToArray("This is my text I want to wrap around something", 15) ' This will break the string into multiple lines with a maximum length of 15 characters per line '--------------------------------------------------------------------------------------- ' Public Function WordWrapByCharacterToArray(ByVal TextToWrap As String, _ByVal LengthOfLine As Long) As String()On Error GoTo WordWrapByCharacterToArray_Error:Dim objRegExp As VBScript_RegExp_55.RegExpDim objWordList As VBScript_RegExp_55.MatchCollectionDim objWord As VBScript_RegExp_55.MatchDim strStartGroup As StringDim strEndGroup As StringDim strRegPattern As StringDim intLineNum As Integer: intLineNum = 0Dim intLinePos As IntegerDim strReturn() As StringDim strLineData() As StringDim strLine As VariantDim intNumCharUsed As Integer' Instantiate RegExSet objRegExp = New VBScript_RegExp_55.RegExp' ------------------------------------' Set Set Font Settings' ------------------------------------' Make sure we were sent a good line widthIf LengthOfLine < 1 Then' Return an ErrorErr.Raise Number:=vbObjectError + 605, Description:="Requested Length of Line must be greater than 0"End If' ------------------------------------' Set RegEx Settings' ------------------------------------objRegExp.MultiLine = FalseobjRegExp.Global = True' ------------------------------------' Set the Search Pattern' ------------------------------------' This is the RegEx List for Characters that should be grouped with the text that follows them' ${(<[\ - Have to use escape character "\" for ] and \strStartGroup = "${(<\[\\"' This is the RegEx List for Characters that should be grouped with the text the preceeds them' !)}%>?-] - Have to use escape character "\" for - and ]strEndGroup = "!)}%>?\-\]"' [] = Group. Find Anything listed in this group. ? = Find 0 to 1 instancesstrRegPattern = "[" & strStartGroup & "]?"' Now grab all characters that are not part of special list and no spaces \s' [] = Group. Find Anything listed in this group. + = Find 1 to many instances.' Equates to finding whole words including some special characters (those not in list since negative comparison)strRegPattern = strRegPattern & "[^\s" & strStartGroup & strEndGroup & "]+"' [] = Group. Find Anything listed in this group. ? = Find 0 to 1 instancesstrRegPattern = strRegPattern & "[" & strEndGroup & "]?"objRegExp.Pattern = strRegPattern' ------------------------------------' Break up Original String into already defined lines' ------------------------------------strLineData = Split(TextToWrap, vbLf)' ------------------------------------' Set Original Size of Return Array to just one line. Can Expand Later' ------------------------------------ReDim Preserve strReturn(0)' ------------------------------------' Loop through each line to wrap text if needed' ------------------------------------For Each strLine In strLineData' Reset the Line Position for this set of textintLinePos = 0' Make sure the line is long enough to need to be wrappedIf Len(strLine) > LengthOfLine Then' ------------------------------------' Get the list of words defined by the Pattern' ------------------------------------Set objWordList = objRegExp.Execute(strLine)' ------------------------------------' Build the Return Array' ------------------------------------For Each objWord In objWordList' See if this word is too big to FitIf objWord.Length > LengthOfLine Then' Word is too big for the line, have to break it appart' Reset the Number of Characters used in this word to 1intNumCharUsed = 1' First see if we have any remaining words that should be added to the previous lineIf objWord.FirstIndex - intLinePos > 0 Then' See if we need to expand the arrayIf UBound(strReturn) < intLineNum Then' ReDim the ArrayReDim Preserve strReturn(intLineNum)End If' Save Previous LinestrReturn(intLineNum) = Mid(strLine, intLinePos + 1, objWord.FirstIndex - intLinePos)' Reset the Line PositionintLinePos = objWord.FirstIndex' Increment our line CounterintLineNum = intLineNum + 1End IfDo While intNumCharUsed < objWord.Length' See if we need to expand the arrayIf UBound(strReturn) < intLineNum Then' ReDim the ArrayReDim Preserve strReturn(intLineNum)End If' Get as many characters as will fit on the linestrReturn(intLineNum) = Mid(objWord.Value, intNumCharUsed, LengthOfLine)' Increase the Number used counterintNumCharUsed = intNumCharUsed + Len(strReturn(intLineNum))' Reset the Line PositionintLinePos = intLinePos + Len(strReturn(intLineNum))' Increment our line CounterintLineNum = intLineNum + 1LoopElseIf objWord.FirstIndex - intLinePos + objWord.Length > LengthOfLine Then' See if we need to expand the arrayIf UBound(strReturn) < intLineNum Then' ReDim the ArrayReDim Preserve strReturn(intLineNum)End If' This word will not fit on current Line. Save Current LinestrReturn(intLineNum) = Mid(strLine, intLinePos + 1, objWord.FirstIndex - intLinePos)' Reset the Line PositionintLinePos = objWord.FirstIndex' Increment our line CounterintLineNum = intLineNum + 1End IfEnd If 'objWord.Length > LengthOfLineNext' ------------------------------------' See if there is any text yet to add' ------------------------------------If (Len(strLine) - intLinePos) > 0 Then' See if we need to expand the arrayIf UBound(strReturn) < intLineNum Then' ReDim the ArrayReDim Preserve strReturn(intLineNum)End If' Save of the Last bits of DatastrReturn(intLineNum) = Right(strLine, Len(strLine) - intLinePos)' Increment our line CounterintLineNum = intLineNum + 1End IfElse' ------------------------------------' The entire line fits. Add it now' ------------------------------------' See if we need to expand the arrayIf UBound(strReturn) < intLineNum Then' ReDim the ArrayReDim Preserve strReturn(intLineNum)End IfstrReturn(intLineNum) = strLine' Increment our line CounterintLineNum = intLineNum + 1End IfNext' Return our ArrayWordWrapByCharacterToArray = strReturnRelease:On Error Resume NextErase strReturnSet objWordList = NothingSet objWord = NothingSet objRegExp = NothingExit FunctionWordWrapByCharacterToArray_Error:MsgBox "Procedure = WordWrapByCharacterToArray" & vbCrLf & _"Error Number = " & Err.Number & vbCrLf & _"Error Message = " & Err.Description & vbCrLf, _vbCritical Or vbSystemModal, "Word Wrap Error"Resume Release: End Function VBScript Version:'--------------------------------------------------------------------------------------- ' Function : WordWrapByCharacterToArray ' Date : 03/21/2012 ' Purpose : Will Return a String array of line data wrapped at proper break points ' for a given line length as determined by the number of characters. ' It uses the same rules as a VBA text box ' ' Usage : Set a string array = to WordWrapByCharacterToArray sending WordWrapByCharacterToArray ' your text and maximum length for each line ' Example: ' Dim strLines ' strLines = WordWrapByCharacterToArray("This is my text I want to wrap around something", 15) ' This will break the string into multiple lines with a maximum length of 15 characters per line '--------------------------------------------------------------------------------------- ' Public Function WordWrapByCharacterToArray(TextToWrap, LengthOfLine)Dim objRegExp, objWordList, objWordDim strStartGroup, strEndGroup, strRegPatternDim intLineNum, intLinePos, intNumCharUsedDim strReturn(), strLineData, strLine' Instantiate RegExSet objRegExp = CreateObject("VBScript.RegExp")intLineNum = 0' ------------------------------------' Set Set Font Settings' ------------------------------------' Make sure we were sent a good line widthIf LengthOfLine < 1 Then' Return an ErrorErr.Raise vbObjectError + 605, "Requested Length of Line must be greater than 0"End If' ------------------------------------' Set RegEx Settings' ------------------------------------objRegExp.MultiLine = FalseobjRegExp.Global = True' ------------------------------------' Set the Search Pattern' ------------------------------------' This is the RegEx List for Characters that should be grouped with the text that follows them' ${(<[\ - Have to use escape character "\" for ] and \strStartGroup = "${(<\[\\"' This is the RegEx List for Characters that should be grouped with the text the preceeds them' !)}%>?-] - Have to use escape character "\" for - and ]strEndGroup = "!)}%>?\-\]"' [] = Group. Find Anything listed in this group. ? = Find 0 to 1 instancesstrRegPattern = "[" & strStartGroup & "]?"' Now grab all characters that are not part of special list and no spaces \s' [] = Group. Find Anything listed in this group. + = Find 1 to many instances.' Equates to finding whole words including some special characters (those not in list since negative comparison)strRegPattern = strRegPattern & "[^\s" & strStartGroup & strEndGroup & "]+"' [] = Group. Find Anything listed in this group. ? = Find 0 to 1 instancesstrRegPattern = strRegPattern & "[" & strEndGroup & "]?"objRegExp.Pattern = strRegPattern' ------------------------------------' Break up Original String into already defined lines' ------------------------------------strLineData = Split(TextToWrap, vbLf)' ------------------------------------' Set Original Size of Return Array to just one line. Can Expand Later' ------------------------------------ReDim strReturn(0)' ------------------------------------' Loop through each line to wrap text if needed' ------------------------------------For Each strLine In strLineData' Reset the Line Position for this set of textintLinePos = 0' Make sure the line is long enough to need to be wrappedIf Len(strLine) > LengthOfLine Then' ------------------------------------' Get the list of words defined by the Pattern' ------------------------------------Set objWordList = objRegExp.Execute(strLine)' ------------------------------------' Build the Return Array' ------------------------------------For Each objWord In objWordList' See if this word is too big to FitIf objWord.Length > LengthOfLine Then' Word is too big for the line, have to break it appart' Reset the Number of Characters used in this word to 1intNumCharUsed = 1' First see if we have any remaining words that should be added to the previous lineIf objWord.FirstIndex - intLinePos > 0 Then' See if we need to expand the arrayIf UBound(strReturn) < intLineNum Then' ReDim the ArrayReDim Preserve strReturn(intLineNum)End If' Save Previous LinestrReturn(intLineNum) = Mid(strLine, intLinePos + 1, objWord.FirstIndex - intLinePos)' Reset the Line PositionintLinePos = objWord.FirstIndex' Increment our line CounterintLineNum = intLineNum + 1End IfDo While intNumCharUsed < objWord.Length' See if we need to expand the arrayIf UBound(strReturn) < intLineNum Then' ReDim the ArrayReDim Preserve strReturn(intLineNum)End If' Get as many characters as will fit on the linestrReturn(intLineNum) = Mid(objWord.Value, intNumCharUsed, LengthOfLine)' Increase the Number used counterintNumCharUsed = intNumCharUsed + Len(strReturn(intLineNum))' Reset the Line PositionintLinePos = intLinePos + Len(strReturn(intLineNum))' Increment our line CounterintLineNum = intLineNum + 1LoopElseIf objWord.FirstIndex - intLinePos + objWord.Length > LengthOfLine Then' See if we need to expand the arrayIf UBound(strReturn) < intLineNum Then' ReDim the ArrayReDim Preserve strReturn(intLineNum)End If' This word will not fit on current Line. Save Current LinestrReturn(intLineNum) = Mid(strLine, intLinePos + 1, objWord.FirstIndex - intLinePos)' Reset the Line PositionintLinePos = objWord.FirstIndex' Increment our line CounterintLineNum = intLineNum + 1End IfEnd If 'objWord.Length > LengthOfLineNext' ------------------------------------' See if there is any text yet to add' ------------------------------------If (Len(strLine) - intLinePos) > 0 Then' See if we need to expand the arrayIf UBound(strReturn) < intLineNum Then' ReDim the ArrayReDim Preserve strReturn(intLineNum)End If' Save of the Last bits of DatastrReturn(intLineNum) = Right(strLine, Len(strLine) - intLinePos)' Increment our line CounterintLineNum = intLineNum + 1End IfElse' ------------------------------------' The entire line fits. Add it now' ------------------------------------' See if we need to expand the arrayIf UBound(strReturn) < intLineNum Then' ReDim the ArrayReDim Preserve strReturn(intLineNum)End IfstrReturn(intLineNum) = strLine' Increment our line CounterintLineNum = intLineNum + 1End IfNext' Return our ArrayWordWrapByCharacterToArray = strReturn' Release the ObjectsOn Error Resume NextSet objWordList = NothingSet objWord = NothingSet objRegExp = Nothing End Function

WordWrapByCharacterToSstring Function:

WordWrapByCharacterToSstri ng功能:

Here is the Next function. ?To use this function, send it the text that you want word wrapped and the maximum number of characters per line. ?It will return a single string with each line in the string separated by a carriage return.

這是Next函數。 要使用此功能,請向其發送您要自動換行的文本以及每行最大字符數。 它將返回單個字符串,字符串中的每一行都用回車符分隔。

Example Usage:

用法示例:

Dim strWrappedLines As String strWrappedLines = WordWrapByPointToString(TextToWrap:=TextBox1.Text, LengthOfLine:=20) Debug.Print strWrappedLines '--------------------------------------------------------------------------------------- ' Procedure : WordWrapByCharacterToString ' Date : 03/23/2012 ' Purpose : Will Return a String array of line data wrapped at proper break points ' for a given line length as determined by the number of characters. ' It uses the same rules as a VBA text box ' *** MUST have a REFERENCE set for MICROSOFT VBSCRIPT REGULAR EXPRESSION 5.5 ' ' Usage : Set a string array = to WordWrapByCharacterToString sending WordWrapByCharacterToString ' your text and maximum length for each line ' Example: ' Dim strWrappedLines as string ' strWrappedLines = WordWrapByCharacterToString("This is my text I want to wrap around something", 15) ' This will break the string into multiple lines with a maximum length of 15 characters per line '--------------------------------------------------------------------------------------- ' Public Function WordWrapByCharacterToString(ByVal TextToWrap As String, _ByVal LengthOfLine As Long) As StringOn Error GoTo WordWrapByCharacterToString_Error:Dim objRegExp As VBScript_RegExp_55.RegExpDim objWordList As VBScript_RegExp_55.MatchCollectionDim objWord As VBScript_RegExp_55.MatchDim strStartGroup As StringDim strEndGroup As StringDim strRegPattern As StringDim intLineNum As Integer: intLineNum = 0Dim intLinePos As IntegerDim strReturn As StringDim strLineData() As StringDim strLine As VariantDim intNumCharUsed As Integer' Instantiate RegExSet objRegExp = New VBScript_RegExp_55.RegExp' ------------------------------------' Set Set Font Settings' ------------------------------------' Make sure we were sent a good line widthIf LengthOfLine < 1 Then' Return an ErrorErr.Raise Number:=vbObjectError + 605, Description:="Requested Length of Line must be greater than 0"End If' ------------------------------------' Set RegEx Settings' ------------------------------------objRegExp.MultiLine = FalseobjRegExp.Global = True' ------------------------------------' Set the Search Pattern' ------------------------------------' This is the RegEx List for Characters that should be grouped with the text that follows them' ${(<[\ - Have to use escape character "\" for ] and \strStartGroup = "${(<\[\\"' This is the RegEx List for Characters that should be grouped with the text the preceeds them' !)}%>?-] - Have to use escape character "\" for - and ]strEndGroup = "!)}%>?\-\]"' [] = Group. Find Anything listed in this group. ? = Find 0 to 1 instancesstrRegPattern = "[" & strStartGroup & "]?"' Now grab all characters that are not part of special list and no spaces \s' [] = Group. Find Anything listed in this group. + = Find 1 to many instances.' Equates to finding whole words including some special characters (those not in list since negative comparison)strRegPattern = strRegPattern & "[^\s" & strStartGroup & strEndGroup & "]+"' [] = Group. Find Anything listed in this group. ? = Find 0 to 1 instancesstrRegPattern = strRegPattern & "[" & strEndGroup & "]?"objRegExp.Pattern = strRegPattern' ------------------------------------' Break up Original String into already defined lines' ------------------------------------strLineData = Split(TextToWrap, vbLf)' ------------------------------------' Loop through each line to wrap text if needed' ------------------------------------For Each strLine In strLineData' Reset the Line Position for this set of textintLinePos = 0' Make sure the line is long enough to need to be wrappedIf Len(strLine) > LengthOfLine Then' ------------------------------------' Get the list of words defined by the Pattern' ------------------------------------Set objWordList = objRegExp.Execute(strLine)' ------------------------------------' Build the Return Array' ------------------------------------For Each objWord In objWordList' See if this word is too big to FitIf objWord.Length > LengthOfLine Then' Word is too big for the line, have to break it appart' Reset the Number of Characters used in this word to 1intNumCharUsed = 1' First see if we have any remaining words that should be added to the previous lineIf objWord.FirstIndex - intLinePos > 0 Then' Save Previous LinestrReturn = strReturn & (Mid(strLine, intLinePos + 1, objWord.FirstIndex - intLinePos) & vbNewLine)' Reset the Line PositionintLinePos = objWord.FirstIndex' Increment our line CounterintLineNum = intLineNum + 1End IfDo While intNumCharUsed < objWord.Length' Get as many characters as will fit on the linestrReturn = strReturn & (Mid(objWord.Value, intNumCharUsed, LengthOfLine) & vbNewLine)' Reset the Line PositionintLinePos = intLinePos + Len(Mid(objWord.Value, intNumCharUsed, LengthOfLine))' Increase the Number used counterintNumCharUsed = intNumCharUsed + Len(Mid(objWord.Value, intNumCharUsed, LengthOfLine))' Increment our line CounterintLineNum = intLineNum + 1LoopElseIf objWord.FirstIndex - intLinePos + objWord.Length > LengthOfLine Then' This word will not fit on current Line. Save Current LinestrReturn = strReturn & (Mid(strLine, intLinePos + 1, objWord.FirstIndex - intLinePos) & vbNewLine)' Reset the Line PositionintLinePos = objWord.FirstIndex' Increment our line CounterintLineNum = intLineNum + 1End IfEnd If 'objWord.Length > LengthOfLineNext' ------------------------------------' See if there is any text yet to add' ------------------------------------If (Len(strLine) - intLinePos) > 0 Then' Save of the Last bits of DatastrReturn = strReturn & (Right(strLine, Len(strLine) - intLinePos) & vbNewLine)' Increment our line CounterintLineNum = intLineNum + 1End IfElse' ------------------------------------' The entire line fits. Add it now' ------------------------------------strReturn = strReturn & (strLine & vbNewLine)' Increment our line CounterintLineNum = intLineNum + 1End IfNext' Return our ArrayWordWrapByCharacterToString = strReturnRelease:On Error Resume NextSet objWordList = NothingSet objWord = NothingSet objRegExp = NothingExit FunctionWordWrapByCharacterToString_Error:MsgBox "Procedure = WordWrapByCharacterToString" & vbCrLf & _"Error Number = " & Err.Number & vbCrLf & _"Error Message = " & Err.Description & vbCrLf, _vbCritical Or vbSystemModal, "Word Wrap Error"Resume Release: End Function VBScript Version:'--------------------------------------------------------------------------------------- ' Procedure : WordWrapByCharacterToString ' Date : 03/23/2012 ' Purpose : Will Return a String array of line data wrapped at proper break points ' for a given line length as determined by the number of characters. ' It uses the same rules as a VBA text box ' ' Usage : Set a string array = to WordWrapByCharacterToString sending WordWrapByCharacterToString ' your text and maximum length for each line ' Example: ' Dim strWrappedLines ' strWrappedLines = WordWrapByCharacterToString("This is my text I want to wrap around something", 15) ' This will break the string into multiple lines with a maximum length of 15 characters per line '--------------------------------------------------------------------------------------- ' Public Function WordWrapByCharacterToString(TextToWrap, LengthOfLine)Dim objRegExp, objWordList, objWordDim strStartGroup, strEndGroup, strRegPatternDim intLineNum, intLinePos, intNumCharUsedDim strReturn, strLineData, strLine' Instantiate RegExSet objRegExp = CreateObject("VBScript.RegExp")intLineNum = 0' ------------------------------------' Set Set Font Settings' ------------------------------------' Make sure we were sent a good line widthIf LengthOfLine < 1 Then' Return an ErrorErr.Raise vbObjectError + 605, "Requested Length of Line must be greater than 0"End If' ------------------------------------' Set RegEx Settings' ------------------------------------objRegExp.MultiLine = FalseobjRegExp.Global = True' ------------------------------------' Set the Search Pattern' ------------------------------------' This is the RegEx List for Characters that should be grouped with the text that follows them' ${(<[\ - Have to use escape character "\" for ] and \strStartGroup = "${(<\[\\"' This is the RegEx List for Characters that should be grouped with the text the preceeds them' !)}%>?-] - Have to use escape character "\" for - and ]strEndGroup = "!)}%>?\-\]"' [] = Group. Find Anything listed in this group. ? = Find 0 to 1 instancesstrRegPattern = "[" & strStartGroup & "]?"' Now grab all characters that are not part of special list and no spaces \s' [] = Group. Find Anything listed in this group. + = Find 1 to many instances.' Equates to finding whole words including some special characters (those not in list since negative comparison)strRegPattern = strRegPattern & "[^\s" & strStartGroup & strEndGroup & "]+"' [] = Group. Find Anything listed in this group. ? = Find 0 to 1 instancesstrRegPattern = strRegPattern & "[" & strEndGroup & "]?"objRegExp.Pattern = strRegPattern' ------------------------------------' Break up Original String into already defined lines' ------------------------------------strLineData = Split(TextToWrap, vbLf)' ------------------------------------' Loop through each line to wrap text if needed' ------------------------------------For Each strLine In strLineData' Reset the Line Position for this set of textintLinePos = 0' Make sure the line is long enough to need to be wrappedIf Len(strLine) > LengthOfLine Then' ------------------------------------' Get the list of words defined by the Pattern' ------------------------------------Set objWordList = objRegExp.Execute(strLine)' ------------------------------------' Build the Return Array' ------------------------------------For Each objWord In objWordList' See if this word is too big to FitIf objWord.Length > LengthOfLine Then' Word is too big for the line, have to break it appart' Reset the Number of Characters used in this word to 1intNumCharUsed = 1' First see if we have any remaining words that should be added to the previous lineIf objWord.FirstIndex - intLinePos > 0 Then' Save Previous LinestrReturn = strReturn & (Mid(strLine, intLinePos + 1, objWord.FirstIndex - intLinePos) & vbNewLine)' Reset the Line PositionintLinePos = objWord.FirstIndex' Increment our line CounterintLineNum = intLineNum + 1End IfDo While intNumCharUsed < objWord.Length' Get as many characters as will fit on the linestrReturn = strReturn & (Mid(objWord.Value, intNumCharUsed, LengthOfLine) & vbNewLine)' Reset the Line PositionintLinePos = intLinePos + Len(Mid(objWord.Value, intNumCharUsed, LengthOfLine))' Increase the Number used counterintNumCharUsed = intNumCharUsed + Len(Mid(objWord.Value, intNumCharUsed, LengthOfLine))' Increment our line CounterintLineNum = intLineNum + 1LoopElseIf objWord.FirstIndex - intLinePos + objWord.Length > LengthOfLine Then' This word will not fit on current Line. Save Current LinestrReturn = strReturn & (Mid(strLine, intLinePos + 1, objWord.FirstIndex - intLinePos) & vbNewLine)' Reset the Line PositionintLinePos = objWord.FirstIndex' Increment our line CounterintLineNum = intLineNum + 1End IfEnd If 'objWord.Length > LengthOfLineNext' ------------------------------------' See if there is any text yet to add' ------------------------------------If (Len(strLine) - intLinePos) > 0 Then' Save of the Last bits of DatastrReturn = strReturn & (Right(strLine, Len(strLine) - intLinePos) & vbNewLine)' Increment our line CounterintLineNum = intLineNum + 1End IfElse' ------------------------------------' The entire line fits. Add it now' ------------------------------------strReturn = strReturn & (strLine & vbNewLine)' Increment our line CounterintLineNum = intLineNum + 1End IfNext' Return our ArrayWordWrapByCharacterToString = strReturn' Release the ObjectsOn Error Resume NextSet objWordList = NothingSet objWord = NothingSet objRegExp = Nothing End Function

Stage Two:

第二階段:

As I mentioned, the problem with both of the above functions is that they still break based on a character count. ?With propotionalized fonts, though, a line of "iiiiiiiiii" will break differently than a line of "WWWWWWWWWW" in a textbox. ?Since the width of a text box is based on points, the code needed to determine the size of the text in points before it could split the lines. ?There are examples on the internet of using Windows APIs to determine the pixel size of a section of text. ?If you know the DPI of a monitor, which can be had via the APIs, you can determine the point size. ?Adapting those ideas, a class to determine text size was created.

正如我提到的,上述兩個函數的問題在于它們仍然基于字符計數而中斷。 但是,對于帶比例的字體,文本框中的“ iiiiiiiiii”行與“ WWWWWWWWWW”行的折斷方式不同。 由于文本框的寬度基于點,因此需要使用代碼來確定文本的大小(以點為單位),然后才能分割線。 互聯網上有使用Windows API確定一段文字的像素大小的示例。 如果您知道可以通過API獲得的顯示器的DPI,則可以確定點的大小。 為適應這些想法,創建了一個確定文本大小的類。

This class is used to measure the point size of each word, to compare that with the targeted line width in points, and to see if the word fits that line. ?Pleaset note that the defined width of a text box is not exactly the size needed for your total line width. ?The textbox has margins built into the display. ?I could not find this documented anywhere, but it appears that the margin is 3 points per side (Selection Margin is another 3 if set to true and a displayed scroll bar appears to take up 14). ?Therefore when wrapping text, you need to take the width of the text box and subtract the correct amount (like 6 for just a basic box) to find the width in points that can display text. ?

此類用于測量每個單詞的點大小,將其與目標行寬(以磅為單位)進行比較,并查看單詞是否適合該行。 請注意,文本框的定義寬度與總線寬所需的大小不完全相同。 文本框在顯示屏中內置了頁邊距。 我在任何地方都找不到此文檔,但是看來邊距是每邊3個點(如果設置為true,則“選擇邊距”是另外3個點,并且顯示的滾動條似乎占用14個點)。 因此,在自動換行時,需要采用文本框的寬度并減去正確的數量(例如對于基本框來說為6)以找到可以顯示文本的點的寬度。

Since this code requires access to Windows API, VBA must be used. ?Therefore, they have been coded using early binding for regular expressions. ?Please make sure to add a reference in your project to MICROSOFT VBSCRIPT REGULAR EXPRESSION 5.5 to use these functions.

由于此代碼需要訪問Windows API,因此必須使用VBA。 因此,已使用早期綁定對正則表達式進行編碼。 請確保在項目中添加對MICROSOFT VBSCRIPT REGULAR EXPRESSION 5.5的引用,以使用這些功能。

WordWrapByPointToArray Function:

WordWrapByPointToArray函數:

Here is the third attempt at a function. ?To use this function, send it the text that you want word wrapped, the font used, and how wide the line should be in points. ?It will return a string array with each line as a separate element in the array.

這是函數的第三次嘗試。 要使用此功能,請向其發送要自動換行的文本,使用的字體以及線的寬度(以磅為單位)。 它將返回一個字符串數組,其中每一行作為數組中的單獨元素。

Example:

例:

Dim strLines() As String strLines = WordWrapByPointToArray(TextToWrap:=TextBox1.Text, TextFont:=TextBox1.Font, LineWidthInPoints:=TextBox1.Width - 6) For i = 0 To UBound(strLines)Debug.Print strLines(i) Next '--------------------------------------------------------------------------------------- ' Function : WordWrapByPointToArray ' Date : 03/20/2012 ' Purpose : Will Return a String array of line data that has been sepearated into lines ' based on Width in Points and split according to textbox word wrap rules. ' *** MUST have a REFERENCE set for Microsoft VBScript Regular Expression 5.5 ' *** Must also have the DetermineTextSize Class added to the project*** ' ' Usage : Set a string array = to WordWrapByPointToArray sending WordWrapByPointToArray ' your text, Font and Line Width (Point Size) for each line ' Example: ' Dim strLines() as string ' strLines = WordWrapByPointToArray(TextToWrap:=TextBox1.Text, TextFont:=TextBox1.Font, LineWidthInPoints:=TextBox1.Width - 6) ' This will break the string into multiple lines at the same point as the text box ' ' Please note in the example I take 6 away form TextBox1.Width as this appears to be ' the margin size of a text box. I found this through trial and error and have not ' been able to verify that value. '--------------------------------------------------------------------------------------- ' Public Function WordWrapByPointToArray(ByVal TextToWrap As String, _ByVal TextFont As StdFont, ByVal LineWidthInPoints As Single) As String()On Error GoTo WordWrapByPointToArray_Error:Dim objRegExp As VBScript_RegExp_55.RegExpDim objWordList As VBScript_RegExp_55.MatchCollectionDim objWord As VBScript_RegExp_55.MatchDim udtTextSize As DetermineTextSizeDim strStartGroup As StringDim strEndGroup As StringDim strRegPattern As StringDim intLineNum As Integer: intLineNum = 0Dim intLinePos As IntegerDim intEndPosition As IntegerDim strReturn() As StringDim strLineData() As StringDim strLine As VariantDim lngPointSize As LongDim lngWordSize As LongDim intNumCharUsed As Integer' Instantiate RegExSet objRegExp = New VBScript_RegExp_55.RegExpSet udtTextSize = New DetermineTextSize' ------------------------------------' Set Set Font Settings' ------------------------------------' Make sure we were sent a good line widthIf LineWidthInPoints < 1 Then' Return an ErrorErr.Raise Number:=vbObjectError + 605, Description:="Requested Line Width in Points must be greater than 0"End If' ------------------------------------' Set Set Font Settings' ------------------------------------udtTextSize.Font = TextFont' ------------------------------------' Set RegEx Settings' ------------------------------------objRegExp.MultiLine = FalseobjRegExp.Global = True' ------------------------------------' Set the Search Pattern' ------------------------------------' This is the RegEx List for Characters that should be grouped with the text that follows them' ${(<[\ - Have to use escape character "\" for ] and \strStartGroup = "${(<\[\\"' This is the RegEx List for Characters that should be grouped with the text the preceeds them' !)}%>?-] - Have to use escape character "\" for - and ]strEndGroup = "!)}%>?\-\]"' [] = Group. Find Anything listed in this group. ? = Find 0 to 1 instancesstrRegPattern = "[" & strStartGroup & "]?"' Now grab all characters that are not part of special list and no spaces \s' [] = Group. Find Anything listed in this group. + = Find 1 to many instances.' Equates to finding whole words including some special characters (those not in list since negative comparison)strRegPattern = strRegPattern & "[^\s" & strStartGroup & strEndGroup & "]+"' [] = Group. Find Anything listed in this group. ? = Find 0 to 1 instancesstrRegPattern = strRegPattern & "[" & strEndGroup & "]?"objRegExp.Pattern = strRegPattern' ------------------------------------' Break up Original String into already defined lines' ------------------------------------strLineData = Split(TextToWrap, vbLf)' ------------------------------------' Set Original Size of Return Array to just one line. Can Expand Later' ------------------------------------ReDim Preserve strReturn(0)' ------------------------------------' Loop through each line to wrap text if needed' ------------------------------------For Each strLine In strLineData' Reset the Line Position for this set of textintLinePos = 0' Make sure the line is long enough to need to be wrappedIf udtTextSize.TextWidthinPoints(strLine) > LineWidthInPoints Then' ------------------------------------' Get the list of words defined by the Pattern' ------------------------------------Set objWordList = objRegExp.Execute(strLine)' ------------------------------------' Build the Return Array' ------------------------------------For Each objWord In objWordListlngWordSize = udtTextSize.TextWidthinPoints(objWord.Value)' See if this word is too big to FitIf lngWordSize > LineWidthInPoints Then' Word is too big for the line, have to break it appart' Reset the Number of Characters used in this word to 0intNumCharUsed = 0' First see if we have any remaining words that should be added to the previous lineIf objWord.FirstIndex - intLinePos > 0 Then' See if we need to expand the arrayIf UBound(strReturn) < intLineNum Then' ReDim the ArrayReDim Preserve strReturn(intLineNum)End If' Save Previous LinestrReturn(intLineNum) = Mid(strLine, intLinePos + 1, objWord.FirstIndex - intLinePos)' Reset the Line PositionintLinePos = objWord.FirstIndex' Increment our line CounterintLineNum = intLineNum + 1End IflngPointSize = lngWordSize' Keep Looping until remaining text will fit on a line by itselfDo While lngPointSize > LineWidthInPoints' Calculate the new end Length (Try to get close to needed end so it does not loop too long)If (objWord.Length - intNumCharUsed) > 10 Then' Set our attempted end position. Figure out how much of the word we have left' and then take the percentage of that. The precantage being how far over' the line width we areintEndPosition = intLinePos + ((objWord.Length - intNumCharUsed) / CInt(lngPointSize / LineWidthInPoints))Else' We don't have too many characters Left so just go at them one at a timeintEndPosition = intLinePos + (objWord.Length - intNumCharUsed)End If' Recalculate the lengthlngPointSize = udtTextSize.TextWidthinPoints(Mid(strLine, intLinePos + 1, intEndPosition - intLinePos))If lngPointSize <= LineWidthInPoints Then' Keep Looping until we are one past it fitting on the lineDo While lngPointSize <= LineWidthInPoints' This character would still fit, add one more characterintEndPosition = intEndPosition + 1' Recalculate the lengthlngPointSize = udtTextSize.TextWidthinPoints(Mid(strLine, intLinePos + 1, intEndPosition - intLinePos))Loop' Take away the one extra character to go back to the last one that fitintEndPosition = intEndPosition - 1Else' Still too big' Keep removing one character until it fitsDo While lngPointSize > LineWidthInPoints' Did not fit, go back one characterintEndPosition = intEndPosition - 1' Recalculate the lengthlngPointSize = udtTextSize.TextWidthinPoints(Mid(strLine, intLinePos + 1, intEndPosition - intLinePos))LoopEnd If' Calculate how many characters were addedintNumCharUsed = intNumCharUsed + (intEndPosition - intLinePos)' See if we need to expand the arrayIf UBound(strReturn) < intLineNum Then' ReDim the ArrayReDim Preserve strReturn(intLineNum)End If' Since we made it this far, we know this text fits. Add it nowstrReturn(intLineNum) = Mid(strLine, intLinePos + 1, intEndPosition - intLinePos)' Reset the Line PositionintLinePos = intEndPosition' Increment our line CounterintLineNum = intLineNum + 1' Now Calculate how big the next line is when we add the remaining text and try againlngPointSize = udtTextSize.TextWidthinPoints(Mid(strLine, intLinePos + 1, objWord.FirstIndex - intLinePos + objWord.Length))LoopElse' This word is smaller than the line width. Check the width if we add itlngPointSize = udtTextSize.TextWidthinPoints(Mid(strLine, intLinePos + 1, objWord.FirstIndex - intLinePos + objWord.Length))If lngPointSize > LineWidthInPoints Then' It did not fit. Add previous text to array' See if we need to expand the arrayIf UBound(strReturn) < intLineNum Then' ReDim the ArrayReDim Preserve strReturn(intLineNum)End If' This word will not fit on current Line. Save Current LinestrReturn(intLineNum) = Mid(strLine, intLinePos + 1, objWord.FirstIndex - intLinePos)' Reset the Line PositionintLinePos = objWord.FirstIndex' Increment our line CounterintLineNum = intLineNum + 1End IfEnd IfNext' ------------------------------------' See if there is any text yet to add' ------------------------------------If (Len(strLine) - intLinePos) > 0 Then' See if we need to expand the arrayIf UBound(strReturn) < intLineNum Then' ReDim the ArrayReDim Preserve strReturn(intLineNum)End If' Save of the Last bits of DatastrReturn(intLineNum) = Right(strLine, Len(strLine) - intLinePos)' Increment our line CounterintLineNum = intLineNum + 1End IfElse' ------------------------------------' The entire line fits. Add it now' ------------------------------------' See if we need to expand the arrayIf UBound(strReturn) < intLineNum Then' ReDim the ArrayReDim Preserve strReturn(intLineNum)End IfstrReturn(intLineNum) = strLine' Increment our line CounterintLineNum = intLineNum + 1End IfNext' Return our ArrayWordWrapByPointToArray = strReturnRelease:On Error Resume NextErase strReturnSet udtTextSize = NothingSet objWordList = NothingSet objWord = NothingSet objRegExp = NothingExit FunctionWordWrapByPointToArray_Error:MsgBox "Procedure = WordWrapByPointToArray" & vbCrLf & _"Error Number = " & Err.Number & vbCrLf & _"Error Message = " & Err.Description & vbCrLf, _vbCritical Or vbSystemModal, "Word Wrap Error"Resume Release: End Function

WordWrapByPointToString Function

WordWrapByPointToString函數

Here is the fourth attempt at a function. ?To use this function, send it the text that you want word wrapped, the font used, and how wide the line should be in points. ?It will return a single string with each line in the string separated by a carriage return.

這是功能的第四次嘗試。 要使用此功能,請向其發送要自動換行的文本,使用的字體以及線的寬度(以磅為單位)。 它將返回單個字符串,字符串中的每一行都用回車符分隔。

Example:

例:

Dim strWrappedLines As String strWrappedLines = WordWrapByPointToString(TextToWrap:=TextBox1.Text, TextFont:=TextBox1.Font, LineWidthInPoints:=TextBox1.Width - 6) Debug.Print strWrappedLines '--------------------------------------------------------------------------------------- ' Function : WordWrapByPointToString ' Date : 03/20/2012 ' By : Barry Versaw ' Purpose : Will Return a String of data that has been sepearated into lines ' based on Width in Points and split according to textbox word wrap rules. ' Each line is separated by a carriage return & line feed ' *** MUST have a REFERENCE set for Microsoft VBScript Regular Expression 5.5 ' *** Must also have the DetermineTextSize Class added to the project*** ' ' Usage : Set a string array = to WordWrapByPointToString sending WordWrapByPointToString ' your text, Font and Line Width (Point Size) for each line ' Example: ' Dim strWrappedLines as string ' strWrappedLines = WordWrapByPointToString(TextToWrap:=TextBox1.Text, TextFont:=TextBox1.Font, LineWidthInPoints:=TextBox1.Width - 6) ' This will break the string into multiple lines at the same point as the text box ' ' Please note in the example I take 6 away form TextBox1.Width as this appears to be ' the margin size of a text box. I found this through trial and error and have not ' been able to verify that value. '--------------------------------------------------------------------------------------- ' Public Function WordWrapByPointToString(ByVal TextToWrap As String, _ByVal TextFont As StdFont, ByVal LineWidthInPoints As Single) As StringOn Error GoTo WordWrapByPointToString_Error:Dim objRegExp As VBScript_RegExp_55.RegExpDim objWordList As VBScript_RegExp_55.MatchCollectionDim objWord As VBScript_RegExp_55.MatchDim udtTextSize As DetermineTextSizeDim strStartGroup As StringDim strEndGroup As StringDim strRegPattern As StringDim intLineNum As Integer: intLineNum = 0Dim intLinePos As IntegerDim intEndPosition As IntegerDim strReturn As StringDim strLineData() As StringDim strLine As VariantDim lngPointSize As LongDim lngWordSize As LongDim intNumCharUsed As Integer' Instantiate RegExSet objRegExp = New VBScript_RegExp_55.RegExpSet udtTextSize = New DetermineTextSize' ------------------------------------' Set Set Font Settings' ------------------------------------' Make sure we were sent a good line widthIf LineWidthInPoints < 1 Then' Return an ErrorErr.Raise Number:=vbObjectError + 605, Description:="Requested Line Width in Points must be greater than 0"End If' ------------------------------------' Set Set Font Settings' ------------------------------------udtTextSize.Font = TextFont' ------------------------------------' Set RegEx Settings' ------------------------------------objRegExp.MultiLine = FalseobjRegExp.Global = True' ------------------------------------' Set the Search Pattern' ------------------------------------' This is the RegEx List for Characters that should be grouped with the text that follows them' ${(<[\ - Have to use escape character "\" for ] and \strStartGroup = "${(<\[\\"' This is the RegEx List for Characters that should be grouped with the text the preceeds them' !)}%>?-] - Have to use escape character "\" for - and ]strEndGroup = "!)}%>?\-\]"' [] = Group. Find Anything listed in this group. ? = Find 0 to 1 instancesstrRegPattern = "[" & strStartGroup & "]?"' Now grab all characters that are not part of special list and no spaces \s' [] = Group. Find Anything listed in this group. + = Find 1 to many instances.' Equates to finding whole words including some special characters (those not in list since negative comparison)strRegPattern = strRegPattern & "[^\s" & strStartGroup & strEndGroup & "]+"' [] = Group. Find Anything listed in this group. ? = Find 0 to 1 instancesstrRegPattern = strRegPattern & "[" & strEndGroup & "]?"objRegExp.Pattern = strRegPattern' ------------------------------------' Break up Original String into already defined lines' ------------------------------------strLineData = Split(TextToWrap, vbLf)' ------------------------------------' Loop through each line to wrap text if needed' ------------------------------------For Each strLine In strLineData' Reset the Line Position for this set of textintLinePos = 0' Make sure the line is long enough to need to be wrappedIf udtTextSize.TextWidthinPoints(strLine) > LineWidthInPoints Then' ------------------------------------' Get the list of words defined by the Pattern' ------------------------------------Set objWordList = objRegExp.Execute(strLine)' ------------------------------------' Build the Return Array' ------------------------------------For Each objWord In objWordListlngWordSize = udtTextSize.TextWidthinPoints(objWord.Value)' See if this word is too big to FitIf lngWordSize > LineWidthInPoints Then' Word is too big for the line, have to break it appart' Reset the Number of Characters used in this word to 0intNumCharUsed = 0' First see if we have any remaining words that should be added to the previous lineIf objWord.FirstIndex - intLinePos > 0 Then' Save Previous LinestrReturn = strReturn & (Mid(strLine, intLinePos + 1, objWord.FirstIndex - intLinePos) & vbNewLine)' Reset the Line PositionintLinePos = objWord.FirstIndex' Increment our line CounterintLineNum = intLineNum + 1End IflngPointSize = lngWordSize' Keep Looping until remaining text will fit on a line by itselfDo While lngPointSize > LineWidthInPoints' Calculate the new end Length (Try to get close to needed end so it does not loop too long)If (objWord.Length - intNumCharUsed) > 10 Then' Set our attempted end position. Figure out how much of the word we have left' and then take the percentage of that. The precantage being how far over' the line width we areintEndPosition = intLinePos + ((objWord.Length - intNumCharUsed) / CInt(lngPointSize / LineWidthInPoints))Else' We don't have too many characters Left so just go at them one at a timeintEndPosition = intLinePos + (objWord.Length - intNumCharUsed)End If' Recalculate the lengthlngPointSize = udtTextSize.TextWidthinPoints(Mid(strLine, intLinePos + 1, intEndPosition - intLinePos))If lngPointSize <= LineWidthInPoints Then' Keep Looping until we are one past it fitting on the lineDo While lngPointSize <= LineWidthInPoints' This character would still fit, add one more characterintEndPosition = intEndPosition + 1' Recalculate the lengthlngPointSize = udtTextSize.TextWidthinPoints(Mid(strLine, intLinePos + 1, intEndPosition - intLinePos))Loop' Take away the one extra character to go back to the last one that fitintEndPosition = intEndPosition - 1Else' Still too big' Keep removing one character until it fitsDo While lngPointSize > LineWidthInPoints' Did not fit, go back one characterintEndPosition = intEndPosition - 1' Recalculate the lengthlngPointSize = udtTextSize.TextWidthinPoints(Mid(strLine, intLinePos + 1, intEndPosition - intLinePos))LoopEnd If' Calculate how many characters were addedintNumCharUsed = intNumCharUsed + (intEndPosition - intLinePos)' Since we made it this far, we know this text fits. Add it nowstrReturn = strReturn & (Mid(strLine, intLinePos + 1, intEndPosition - intLinePos) & vbNewLine)' Reset the Line PositionintLinePos = intEndPosition' Increment our line CounterintLineNum = intLineNum + 1' Now Calculate how big the next line is when we add the remaining text and try againlngPointSize = udtTextSize.TextWidthinPoints(Mid(strLine, intLinePos + 1, objWord.FirstIndex - intLinePos + objWord.Length))LoopElse' This word is smaller than the line width. Check the width if we add itlngPointSize = udtTextSize.TextWidthinPoints(Mid(strLine, intLinePos + 1, objWord.FirstIndex - intLinePos + objWord.Length))If lngPointSize > LineWidthInPoints Then' It did not fit. Add previous text to array' This word will not fit on current Line. Save Current LinestrReturn = strReturn & (Mid(strLine, intLinePos + 1, objWord.FirstIndex - intLinePos) & vbNewLine)' Reset the Line PositionintLinePos = objWord.FirstIndex' Increment our line CounterintLineNum = intLineNum + 1End IfEnd IfNext' ------------------------------------' See if there is any text yet to add' ------------------------------------If (Len(strLine) - intLinePos) > 0 Then' Save of the Last bits of DatastrReturn = strReturn & (Right(strLine, Len(strLine) - intLinePos) & vbNewLine)' Increment our line CounterintLineNum = intLineNum + 1End IfElse' ------------------------------------' The entire line fits. Add it now' ------------------------------------strReturn = strReturn & (strLine & vbNewLine)' Increment our line CounterintLineNum = intLineNum + 1End IfNext' Return our StringWordWrapByPointToString = strReturnRelease:On Error Resume NextSet udtTextSize = NothingSet objWordList = NothingSet objWord = NothingSet objRegExp = NothingExit FunctionWordWrapByPointToString_Error:MsgBox "Procedure = WordWrapByPointToString" & vbCrLf & _"Error Number = " & Err.Number & vbCrLf & _"Error Message = " & Err.Description & vbCrLf, _vbCritical Or vbSystemModal, "Word Wrap Error"Resume Release: End Function

DetermineTextSize Class

確定文本大小類

Both of the above functions require the following code to be added as a class to your project. ?Please name the class DetermineTextSize. ?To add a class, on the menu click Insert >>?Class Module. ?Then in the properties change the name to DetermineTextSize. ?Then in the code window paste the following code:

以上兩個功能都需要將以下代碼作為類添加到您的項目中。 請將該類命名為DefineTextSize。 要添加類,請在菜單上單擊插入>>類模塊。 然后在屬性中將名稱更改為確定文本大小。 然后在代碼窗口中粘貼以下代碼:

'--------------------------------------------------------------------------------------- ' Class : DetermineTextSize ' PURPOSE : This class accepts a font and the determines the size of the passed text. ' It can return the Text Height or Width in Pixels or ' The Text Height or Width in Points ' ' This code is adapted from several posts on the web '-----------------------Option Explicit' Declare all Needed Windows Constants Private Const LF_FACESIZE = 32 Private Const LOGPIXELSY = 90 Private Const LOGPIXELSX = 88 Private Const DT_CALCRECT = &H400' See - http://msdn.microsoft.com/en-us/library/dd145037%28v=vs.85%29.aspx Private Type udtLogFontlfHeight As LonglfWidth As LonglfEscapement As LonglfOrientation As LonglfWeight As LonglfItalic As BytelfUnderline As BytelfStrikeOut As BytelfCharSet As BytelfOutPrecision As BytelfClipPrecision As BytelfQuality As BytelfPitchAndFamily As BytelfFaceName(LF_FACESIZE) As Byte End TypePrivate Type udtTextSizeWidth As LongHeight As Long End TypePrivate Declare Function GetTextExtentPoint Lib "gdi32" _Alias "GetTextExtentPointA" (ByVal hDC As Long, _ByVal lpszString As String, ByVal cbString As Long, _lpSIZE32 As udtTextSize) As LongPrivate Declare Function CreateFontIndirect Lib "gdi32" Alias "CreateFontIndirectA" _(ByRef lpudtLogFont As udtLogFont) As LongPrivate Declare Function GetDC Lib "user32.dll" _(ByVal hWnd As Long) As LongPrivate Declare Function ReleaseDC Lib "user32.dll" _(ByVal hWnd As Long, ByVal hDC As Long) As LongPrivate Declare Function MulDiv Lib "kernel32" ( _ByVal nNumber As Long, ByVal nNumerator As Long, _ByVal nDenominator As Long) As LongPrivate Declare Function DeleteObject Lib "gdi32" _(ByVal hObject As Long) As LongPrivate Declare Function GetDeviceCaps Lib "gdi32" _(ByVal hDC As Long, ByVal nIndex As Long) As LongPrivate Declare Function SelectObject Lib "gdi32" _(ByVal hDC As Long, ByVal hObject As Long) As LongPrivate m_objFont As StdFont ' Store Font Settings to be used for calculations Private m_hDeviceContext As Long ' Store the handler for the Device Context Private m_intDPIWidth As Integer ' Store the DPI Width - just calculate once Private m_intDPIHeight As Integer ' Store the DPI Height - just calculate once'--------------------------------------------------------------------------------------- ' Procedure : Class_Initialize ' Purpose : Class has been Declared. Set Default Values '--------------------------------------------------------------------------------------- ' Private Sub Class_Initialize()' Instantiate the Font ObjectSet m_objFont = New StdFont' Get Access to A Device Context for the general screenm_hDeviceContext = GetDC(0)' Grab the Screen DPI Settingsm_intDPIWidth = GetDeviceCaps(m_hDeviceContext, LOGPIXELSX)m_intDPIHeight = GetDeviceCaps(m_hDeviceContext, LOGPIXELSY) End Sub'--------------------------------------------------------------------------------------- ' Procedure : Class_Terminate ' Purpose : Class is being Destroyed. Release objects '--------------------------------------------------------------------------------------- ' Private Sub Class_Terminate()Set m_objFont = NothingEnd Sub'--------------------------------------------------------------------------------------- ' Property : Font ' Purpose : Gets & Lets the Font to be used in sizing the text '--------------------------------------------------------------------------------------- ' Public Property Get Font() As StdFontFont = m_objFontReleaseDC 0, m_hDeviceContextEnd PropertyPublic Property Let Font(ByVal FontValue As StdFont)Set m_objFont = FontValueEnd Property'--------------------------------------------------------------------------------------- ' Procedure : TextHeightInPixels ' Purpose : Returns the Height of sent text in pixels '--------------------------------------------------------------------------------------- Public Function TextHeightInPixels(ByVal TextToEvaluate As String) As LongDim udtSize As udtTextSize' Get the Size of the Text in Height & WidthudtSize = GetSizeOfText(TextToEvaluate)' .Bottom Returns how high the rectangle is in pixelsTextHeightInPixels = udtSize.Height End Function'--------------------------------------------------------------------------------------- ' Procedure : TextHeightInPoints ' Purpose : Returns the Height of sent text in Points '--------------------------------------------------------------------------------------- Public Function TextHeightInPoints(ByVal TextToEvaluate As String) As LongDim udtSize As udtTextSize' Get the Size of the Text in Height & WidthudtSize = GetSizeOfText(TextToEvaluate)' .Bottom Returns how high the rectangle is in pixels' Pionts = Pixels * 72 / DPI : 72 Points Per Inch' Use MulDiv to avoid potential overflow errorTextHeightInPoints = MulDiv(udtSize.Height, 72, m_intDPIHeight)End Function'--------------------------------------------------------------------------------------- ' Procedure : TextWidthInPixels ' Purpose : Returns the width of sent text in pixels. If the text has ' multiple lines, it returns the width of the widest line. '--------------------------------------------------------------------------------------- Public Function TextWidthInPixels(ByVal TextToEvaluate As String) As LongDim udtSize As udtTextSize' Get the Size of the Text in Height & WidthudtSize = GetSizeOfText(TextToEvaluate)' Width is the Right Dimension of the RectangleTextWidthInPixels = udtSize.WidthEnd Function'--------------------------------------------------------------------------------------- ' Procedure : TextWidthInPoints ' Purpose : Returns the width of sent text in Points. If the text has ' multiple lines, it returns the width of the widest line. '--------------------------------------------------------------------------------------- Public Function TextWidthinPoints(ByVal TextToEvaluate As String) As LongDim udtSize As udtTextSize' Get the Size of the Text in Height & WidthudtSize = GetSizeOfText(TextToEvaluate)' Width is the Right Dimension of the Rectangle' Pionts = Pixels * 72 / DPI : 72 Points Per Inch' Use MulDiv to avoid potential overflow errorTextWidthinPoints = MulDiv(udtSize.Width, 72, m_intDPIWidth)End Function'--------------------------------------------------------------------------------------- ' Procedure : GetudtTextSize ' Purpose : Gets udtLogFont size of a string and returns it as ' Width ane Length Dimension '--------------------------------------------------------------------------------------- ' Private Function GetSizeOfText(ByVal TextToSize As String) As udtTextSizeDim udtFont As udtLogFontDim hFont As Long ' Handle to a Logical FontDim hOldFont As Long ' Handle to a Logcial FontDim udtReturnDims As udtTextSize' Convert the stdFont to a udtLogFont for use in drawing the RectangleudtFont = OLEFontToLogFont(m_objFont)' Create a temporary Font to draw the RectanglehFont = CreateFontIndirect(udtFont)' Store the Current Font to put back when donehOldFont = SelectObject(m_hDeviceContext, hFont)' Draw the RectangleGetTextExtentPoint m_hDeviceContext, TextToSize, Len(TextToSize), udtReturnDims' Put the Original Font Back in PlaceSelectObject m_hDeviceContext, hOldFont' Delete our Temporary FontDeleteObject hFont' Return the DimensionsGetSizeOfText = udtReturnDimsEnd Function'--------------------------------------------------------------------------------------- ' Procedure : OLEFontToLogFont ' Purpose : Converts an OLE stdFont to a udtLogFont '--------------------------------------------------------------------------------------- Private Function OLEFontToLogFont(ByVal FontToConvert As StdFont) As udtLogFontDim strFont As StringDim intChar As IntegerDim bytFont() As ByteWith OLEFontToLogFontstrFont = FontToConvert.NamebytFont = StrConv(strFont, vbFromUnicode)For intChar = 0 To Len(strFont) - 1.lfFaceName(intChar) = bytFont(intChar)Next intChar' Convert Height from Points to Pixels' Use MulDiv to avoid potential overflow error.lfHeight = -MulDiv(FontToConvert.Size, m_intDPIHeight, 72).lfItalic = FontToConvert.Italic.lfWeight = FontToConvert.Weight.lfUnderline = FontToConvert.Underline.lfStrikeOut = FontToConvert.Strikethrough.lfCharSet = FontToConvert.CharsetEnd WithEnd Function

翻譯自: https://www.experts-exchange.com/articles/10064/The-end-of-a-pilgrimage-to-find-a-more-robust-WordWrap-function.html

一個人的朝圣深度感悟

總結

以上是生活随笔為你收集整理的一个人的朝圣深度感悟_朝圣之末找到更强大的WordWrap函数的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。

大乳丰满人妻中文字幕日本 | 日本熟妇乱子伦xxxx | 亚洲天堂2017无码 | 高清不卡一区二区三区 | 欧美 亚洲 国产 另类 | 97久久超碰中文字幕 | 午夜丰满少妇性开放视频 | av无码不卡在线观看免费 | 国内精品久久毛片一区二区 | 欧美国产亚洲日韩在线二区 | 精品国产国产综合精品 | 无遮无挡爽爽免费视频 | 午夜精品久久久久久久久 | 香港三级日本三级妇三级 | 久久精品人人做人人综合试看 | 中文字幕无码av激情不卡 | 3d动漫精品啪啪一区二区中 | 99精品无人区乱码1区2区3区 | 乱人伦人妻中文字幕无码久久网 | 国产凸凹视频一区二区 | 最近的中文字幕在线看视频 | 国产精品久久久久7777 | 久久久www成人免费毛片 | 日韩精品久久久肉伦网站 | 97久久超碰中文字幕 | 色偷偷av老熟女 久久精品人妻少妇一区二区三区 | 日本va欧美va欧美va精品 | 免费看男女做好爽好硬视频 | 欧美喷潮久久久xxxxx | 久久久精品成人免费观看 | 国产在线一区二区三区四区五区 | 天天摸天天透天天添 | 亚洲 欧美 激情 小说 另类 | 国产又爽又黄又刺激的视频 | 国产精品久久久久7777 | 亚洲s码欧洲m码国产av | 夜精品a片一区二区三区无码白浆 | 奇米综合四色77777久久 东京无码熟妇人妻av在线网址 | 精品夜夜澡人妻无码av蜜桃 | 又粗又大又硬又长又爽 | 国产偷自视频区视频 | 国产国产精品人在线视 | 成人性做爰aaa片免费看 | 国产精品久久久 | 成人免费视频视频在线观看 免费 | 一本无码人妻在中文字幕免费 | 丰满少妇人妻久久久久久 | 成人亚洲精品久久久久软件 | 午夜精品久久久内射近拍高清 | 中文毛片无遮挡高清免费 | 美女极度色诱视频国产 | 国产麻豆精品精东影业av网站 | 思思久久99热只有频精品66 | 一本精品99久久精品77 | 亚洲理论电影在线观看 | 性色欲情网站iwww九文堂 | 中文字幕 亚洲精品 第1页 | 内射巨臀欧美在线视频 | 国产网红无码精品视频 | 国产精品国产三级国产专播 | 色欲久久久天天天综合网精品 | 日本精品人妻无码77777 天堂一区人妻无码 | 亚洲 欧美 激情 小说 另类 | 色一情一乱一伦一区二区三欧美 | 国产成人精品必看 | 国产偷自视频区视频 | 99久久99久久免费精品蜜桃 | 欧美35页视频在线观看 | 欧美性色19p | 国产两女互慰高潮视频在线观看 | 88国产精品欧美一区二区三区 | 亚洲中文字幕无码中字 | 秋霞特色aa大片 | 国产又粗又硬又大爽黄老大爷视 | 国产精品福利视频导航 | 日韩 欧美 动漫 国产 制服 | 色综合久久久无码网中文 | 国产精品-区区久久久狼 | 国产精品怡红院永久免费 | 日韩欧美中文字幕在线三区 | 久久精品国产99精品亚洲 | 亚洲一区二区三区四区 | 无码人妻精品一区二区三区不卡 | 国精品人妻无码一区二区三区蜜柚 | 久9re热视频这里只有精品 | 欧美一区二区三区 | 啦啦啦www在线观看免费视频 | 少妇邻居内射在线 | 亚洲 欧美 激情 小说 另类 | 精品无码国产自产拍在线观看蜜 | 一本色道久久综合亚洲精品不卡 | 国产精品内射视频免费 | 无码人妻丰满熟妇区五十路百度 | 日本丰满护士爆乳xxxx | 国产人妻精品一区二区三区不卡 | 成熟女人特级毛片www免费 | aa片在线观看视频在线播放 | 色诱久久久久综合网ywww | 久久久www成人免费毛片 | 国产成人无码专区 | 亚洲中文字幕在线观看 | 亚洲精品久久久久久一区二区 | 亚洲人成人无码网www国产 | 成年美女黄网站色大免费全看 | 亚洲一区二区三区无码久久 | 中文字幕乱妇无码av在线 | 色爱情人网站 | 四虎国产精品一区二区 | 成人无码精品一区二区三区 | 欧美国产日产一区二区 | 国产精品亚洲五月天高清 | 色一情一乱一伦 | 国产成人精品一区二区在线小狼 | 亚洲国产精品久久久天堂 | 国产成人无码区免费内射一片色欲 | 一本无码人妻在中文字幕免费 | 图片区 小说区 区 亚洲五月 | 熟妇人妻无乱码中文字幕 | 国产亚洲精品久久久久久 | 日韩在线不卡免费视频一区 | 福利一区二区三区视频在线观看 | 国产欧美精品一区二区三区 | 精品久久久无码中文字幕 | 国产精品无码成人午夜电影 | 粗大的内捧猛烈进出视频 | 无码人妻少妇伦在线电影 | 欧美人与禽zoz0性伦交 | 午夜无码区在线观看 | 国产精品久久久久影院嫩草 | 亚洲日韩中文字幕在线播放 | 一本久道高清无码视频 | 成人性做爰aaa片免费看不忠 | 丁香啪啪综合成人亚洲 | 九九在线中文字幕无码 | 久久精品国产日本波多野结衣 | 性欧美牲交在线视频 | 免费无码一区二区三区蜜桃大 | 国产精品igao视频网 | 国产精品久久久久9999小说 | 少女韩国电视剧在线观看完整 | 精品欧美一区二区三区久久久 | 黑森林福利视频导航 | av人摸人人人澡人人超碰下载 | 亚洲成av人综合在线观看 | 国产偷抇久久精品a片69 | 国产成人精品视频ⅴa片软件竹菊 | 97夜夜澡人人爽人人喊中国片 | 色五月丁香五月综合五月 | 精品日本一区二区三区在线观看 | 国产精品久久久午夜夜伦鲁鲁 | 伊人久久大香线蕉av一区二区 | 水蜜桃亚洲一二三四在线 | 精品国产一区二区三区四区 | 国产高清av在线播放 | 2020最新国产自产精品 | 亚洲色偷偷偷综合网 | 亚洲国产av精品一区二区蜜芽 | 国产偷国产偷精品高清尤物 | 在线精品国产一区二区三区 | 国产午夜亚洲精品不卡 | 亚洲日韩av一区二区三区四区 | 无码人妻丰满熟妇区毛片18 | 亚洲大尺度无码无码专区 | 国产免费观看黄av片 | 牲欲强的熟妇农村老妇女 | 麻豆果冻传媒2021精品传媒一区下载 | 国产乱码精品一品二品 | 88国产精品欧美一区二区三区 | 娇妻被黑人粗大高潮白浆 | √天堂资源地址中文在线 | 精品日本一区二区三区在线观看 | 久久人人97超碰a片精品 | 一本一道久久综合久久 | 日韩欧美群交p片內射中文 | 内射巨臀欧美在线视频 | 色欲久久久天天天综合网精品 | 青青草原综合久久大伊人精品 | 人妻少妇精品无码专区动漫 | 色综合久久久久综合一本到桃花网 | 国产精品鲁鲁鲁 | 国产无套内射久久久国产 | 精品人妻人人做人人爽夜夜爽 | 伊人久久大香线焦av综合影院 | 无码人妻精品一区二区三区下载 | 小泽玛莉亚一区二区视频在线 | 大胆欧美熟妇xx | 国产成人无码一二三区视频 | 亚洲综合另类小说色区 | 免费看少妇作爱视频 | 亚洲综合伊人久久大杳蕉 | 色综合久久网 | 亚洲精品中文字幕久久久久 | 欧美 丝袜 自拍 制服 另类 | 无码精品人妻一区二区三区av | 丝袜足控一区二区三区 | 荫蒂被男人添的好舒服爽免费视频 | 高清国产亚洲精品自在久久 | 久久久久久九九精品久 | 国产精品a成v人在线播放 | 1000部啪啪未满十八勿入下载 | 午夜福利试看120秒体验区 | 欧美怡红院免费全部视频 | 国产成人精品一区二区在线小狼 | 久久久久久亚洲精品a片成人 | 午夜精品久久久久久久久 | 欧美freesex黑人又粗又大 | aⅴ亚洲 日韩 色 图网站 播放 | 亚洲gv猛男gv无码男同 | 日韩人妻系列无码专区 | 性开放的女人aaa片 | 97人妻精品一区二区三区 | 国产精品久久精品三级 | 亚洲欧美中文字幕5发布 | 免费无码av一区二区 | 久久久精品国产sm最大网站 | 婷婷五月综合激情中文字幕 | 亚洲欧洲中文日韩av乱码 | 天天av天天av天天透 | 一个人免费观看的www视频 | 久久久久久久女国产乱让韩 | 久久亚洲精品成人无码 | 国产精品igao视频网 | 男人扒开女人内裤强吻桶进去 | 亚洲无人区午夜福利码高清完整版 | 99久久亚洲精品无码毛片 | 未满小14洗澡无码视频网站 | 色爱情人网站 | 久久午夜无码鲁丝片午夜精品 | 国产香蕉97碰碰久久人人 | 无码乱肉视频免费大全合集 | 精品偷自拍另类在线观看 | 亚洲区欧美区综合区自拍区 | 国产精品无码成人午夜电影 | 国产无遮挡又黄又爽免费视频 | 熟妇人妻激情偷爽文 | 5858s亚洲色大成网站www | aⅴ在线视频男人的天堂 | 女人被男人躁得好爽免费视频 | 99re在线播放 | 强辱丰满人妻hd中文字幕 | 中文字幕无线码 | 无码毛片视频一区二区本码 | 黄网在线观看免费网站 | 少妇性俱乐部纵欲狂欢电影 | 色综合天天综合狠狠爱 | 欧美日韩久久久精品a片 | 亚洲欧洲日本综合aⅴ在线 | 玩弄人妻少妇500系列视频 | 欧美人妻一区二区三区 | 无码吃奶揉捏奶头高潮视频 | 97色伦图片97综合影院 | 无码av中文字幕免费放 | 人妻与老人中文字幕 | 国产97人人超碰caoprom | 成人性做爰aaa片免费看 | 特黄特色大片免费播放器图片 | 日本精品久久久久中文字幕 | 丰满岳乱妇在线观看中字无码 | 成人免费视频视频在线观看 免费 | 欧美大屁股xxxxhd黑色 | 国内精品久久久久久中文字幕 | 国产农村妇女aaaaa视频 撕开奶罩揉吮奶头视频 | 在线亚洲高清揄拍自拍一品区 | 国产一区二区三区日韩精品 | 亚洲日本一区二区三区在线 | 久久视频在线观看精品 | 日韩欧美群交p片內射中文 | 人人妻在人人 | av无码久久久久不卡免费网站 | 中文字幕 人妻熟女 | 亚洲日韩一区二区三区 | 99久久99久久免费精品蜜桃 | 国产麻豆精品精东影业av网站 | 精品久久久久久人妻无码中文字幕 | 成人无码精品1区2区3区免费看 | 欧洲熟妇色 欧美 | 国产人妻久久精品二区三区老狼 | 中文字幕无码日韩欧毛 | 国产片av国语在线观看 | 国产超碰人人爽人人做人人添 | 国产农村妇女aaaaa视频 撕开奶罩揉吮奶头视频 | 99久久99久久免费精品蜜桃 | 东京热无码av男人的天堂 | 日日干夜夜干 | 久久久精品成人免费观看 | 亚洲成av人片在线观看无码不卡 | 动漫av网站免费观看 | 欧美激情一区二区三区成人 | 亚洲色偷偷偷综合网 | 性色av无码免费一区二区三区 | 中文字幕无线码免费人妻 | 亚洲性无码av中文字幕 | 国产内射爽爽大片视频社区在线 | 自拍偷自拍亚洲精品10p | 红桃av一区二区三区在线无码av | 成人亚洲精品久久久久 | 麻豆国产97在线 | 欧洲 | 国产成人久久精品流白浆 | 永久免费精品精品永久-夜色 | 日日摸日日碰夜夜爽av | 精品亚洲韩国一区二区三区 | 亚洲熟妇自偷自拍另类 | 欧美乱妇无乱码大黄a片 | 国产人妻大战黑人第1集 | 亚洲精品国产精品乱码视色 | 中文字幕乱码人妻无码久久 | 色综合久久久无码中文字幕 | 国产suv精品一区二区五 | 一个人看的www免费视频在线观看 | 无码一区二区三区在线 | 国内精品久久久久久中文字幕 | 国产精品99爱免费视频 | 国产xxx69麻豆国语对白 | 久久久久成人片免费观看蜜芽 | 风流少妇按摩来高潮 | 蜜桃av蜜臀av色欲av麻 999久久久国产精品消防器材 | 欧美熟妇另类久久久久久不卡 | 亚洲日韩乱码中文无码蜜桃臀网站 | 久久精品国产日本波多野结衣 | 亚洲精品午夜无码电影网 | 国产精品久久久 | 日本熟妇人妻xxxxx人hd | 伊人久久婷婷五月综合97色 | 日产精品高潮呻吟av久久 | 在线成人www免费观看视频 | 正在播放东北夫妻内射 | 欧美激情一区二区三区成人 | 中文字幕av日韩精品一区二区 | 日本乱人伦片中文三区 | 丝袜 中出 制服 人妻 美腿 | 日韩精品a片一区二区三区妖精 | 亚洲国产综合无码一区 | 日韩成人一区二区三区在线观看 | 婷婷综合久久中文字幕蜜桃三电影 | 国产av一区二区三区最新精品 | 97色伦图片97综合影院 | 久久精品人人做人人综合 | 久久天天躁狠狠躁夜夜免费观看 | 欧美真人作爱免费视频 | 亚洲а∨天堂久久精品2021 | 欧美国产日产一区二区 | 久久精品成人欧美大片 | 日本乱偷人妻中文字幕 | 亚洲无人区一区二区三区 | 亚洲国产精品久久久久久 | 国产成人人人97超碰超爽8 | 亚洲欧洲中文日韩av乱码 | 精品无码一区二区三区爱欲 | 无码人妻精品一区二区三区下载 | 亚洲熟女一区二区三区 | 国产无套内射久久久国产 | 久久久精品国产sm最大网站 | 精品乱码久久久久久久 | 亚洲 激情 小说 另类 欧美 | 亚洲七七久久桃花影院 | 国产av人人夜夜澡人人爽麻豆 | 欧美黑人性暴力猛交喷水 | 国产网红无码精品视频 | 蜜桃无码一区二区三区 | 强奷人妻日本中文字幕 | 初尝人妻少妇中文字幕 | 色 综合 欧美 亚洲 国产 | 国产成人精品无码播放 | 国产xxx69麻豆国语对白 | 中文字幕无码免费久久9一区9 | 国精产品一区二区三区 | 人人妻人人澡人人爽欧美精品 | 狠狠色丁香久久婷婷综合五月 | 永久黄网站色视频免费直播 | 一本无码人妻在中文字幕免费 | 久久久久久亚洲精品a片成人 | 97se亚洲精品一区 | 久久国产精品精品国产色婷婷 | 色婷婷综合中文久久一本 | 青青草原综合久久大伊人精品 | 国产成人无码一二三区视频 | 亚洲国产精品毛片av不卡在线 | 性史性农村dvd毛片 | 成人一在线视频日韩国产 | 99精品国产综合久久久久五月天 | 日本熟妇人妻xxxxx人hd | 丰满妇女强制高潮18xxxx | 日韩 欧美 动漫 国产 制服 | 久精品国产欧美亚洲色aⅴ大片 | 人妻少妇精品视频专区 | 久久久久人妻一区精品色欧美 | 亚洲熟妇色xxxxx亚洲 | 亚洲精品中文字幕久久久久 | 国产精品99久久精品爆乳 | 亚洲国产欧美国产综合一区 | 中文字幕精品av一区二区五区 | 亚洲色无码一区二区三区 | 最近的中文字幕在线看视频 | 亚洲aⅴ无码成人网站国产app | 国产精品久久久午夜夜伦鲁鲁 | 国产精品第一区揄拍无码 | 国产卡一卡二卡三 | 国产精品久久久 | 欧美高清在线精品一区 | 蜜臀av在线观看 在线欧美精品一区二区三区 | 亚洲成av人片天堂网无码】 | 久久亚洲中文字幕精品一区 | 中文字幕乱妇无码av在线 | 欧美一区二区三区视频在线观看 | 国产亚洲精品久久久久久国模美 | 4hu四虎永久在线观看 | 国产特级毛片aaaaaaa高清 | 国产精品视频免费播放 | 欧美高清在线精品一区 | 久久午夜无码鲁丝片 | 中文字幕无码视频专区 | 老头边吃奶边弄进去呻吟 | 亚洲娇小与黑人巨大交 | 久久亚洲国产成人精品性色 | 亚洲国产精品无码久久久久高潮 | 国产成人精品视频ⅴa片软件竹菊 | 国产欧美精品一区二区三区 | 国产成人精品无码播放 | 丰满诱人的人妻3 | 久久久久人妻一区精品色欧美 | 97夜夜澡人人爽人人喊中国片 | 日韩精品无码一本二本三本色 | 国产成人一区二区三区在线观看 | 日本肉体xxxx裸交 | 伊人久久大香线焦av综合影院 | 97久久国产亚洲精品超碰热 | 内射欧美老妇wbb | 久久99精品国产麻豆蜜芽 | 亚洲国产精品无码久久久久高潮 | 少妇久久久久久人妻无码 | 最近免费中文字幕中文高清百度 | 国产精品无码一区二区三区不卡 | 天堂无码人妻精品一区二区三区 | 精品无码国产自产拍在线观看蜜 | 亚洲国产精品美女久久久久 | 久久亚洲精品成人无码 | 日本熟妇乱子伦xxxx | 欧美人与牲动交xxxx | 欧美精品免费观看二区 | 欧美刺激性大交 | 东京热男人av天堂 | 一个人看的www免费视频在线观看 | 少妇愉情理伦片bd | 日日天干夜夜狠狠爱 | 丰满人妻精品国产99aⅴ | 国产午夜无码视频在线观看 | 国产精品二区一区二区aⅴ污介绍 | 鲁鲁鲁爽爽爽在线视频观看 | 天天拍夜夜添久久精品大 | 强辱丰满人妻hd中文字幕 | 内射后入在线观看一区 | 亚洲伊人久久精品影院 | 久久久久se色偷偷亚洲精品av | 精品人妻中文字幕有码在线 | 又湿又紧又大又爽a视频国产 | 国产一区二区三区四区五区加勒比 | 午夜成人1000部免费视频 | 国产性生交xxxxx无码 | 桃花色综合影院 | 成人无码精品1区2区3区免费看 | 欧美午夜特黄aaaaaa片 | 扒开双腿疯狂进出爽爽爽视频 | 国产精品99久久精品爆乳 | 天堂а√在线中文在线 | 丁香啪啪综合成人亚洲 | 亚洲无人区午夜福利码高清完整版 | 亚洲精品一区二区三区在线观看 | 无码人妻丰满熟妇区毛片18 | 久久www免费人成人片 | 成人免费无码大片a毛片 | 国产人妻精品午夜福利免费 | 亚洲а∨天堂久久精品2021 | 日日橹狠狠爱欧美视频 | 丰满人妻翻云覆雨呻吟视频 | 精品无码一区二区三区的天堂 | 国产欧美熟妇另类久久久 | 六月丁香婷婷色狠狠久久 | 亚洲国精产品一二二线 | 老熟妇仑乱视频一区二区 | 精品国产精品久久一区免费式 | 久久久国产精品无码免费专区 | 丝袜人妻一区二区三区 | 思思久久99热只有频精品66 | 国产凸凹视频一区二区 | 国产精品亚洲专区无码不卡 | 欧美野外疯狂做受xxxx高潮 | 欧美精品一区二区精品久久 | 妺妺窝人体色www婷婷 | 色情久久久av熟女人妻网站 | 奇米影视888欧美在线观看 | 亚洲综合在线一区二区三区 | 成人无码视频在线观看网站 | 久久99精品久久久久久动态图 | 国产av无码专区亚洲awww | 美女黄网站人色视频免费国产 | 麻豆md0077饥渴少妇 | 国产精品99久久精品爆乳 | 国产亚洲精品久久久久久久 | 日韩成人一区二区三区在线观看 | 好男人社区资源 | 欧美兽交xxxx×视频 | 国产亚洲欧美日韩亚洲中文色 | 中国女人内谢69xxxx | 国产av人人夜夜澡人人爽麻豆 | 欧美人与物videos另类 | 久久99精品久久久久久 | 东京一本一道一二三区 | 中文字幕无码人妻少妇免费 | 中文字幕日韩精品一区二区三区 | 丰满人妻一区二区三区免费视频 | 国产av无码专区亚洲awww | 丝袜 中出 制服 人妻 美腿 | 亚洲欧美国产精品专区久久 | 精品午夜福利在线观看 | 久久午夜无码鲁丝片秋霞 | 欧美日韩视频无码一区二区三 | 国产精品成人av在线观看 | 麻豆国产人妻欲求不满谁演的 | 午夜理论片yy44880影院 | 在线亚洲高清揄拍自拍一品区 | 亚洲 激情 小说 另类 欧美 | 欧美三级a做爰在线观看 | 中文字幕无码人妻少妇免费 | 俺去俺来也在线www色官网 | 5858s亚洲色大成网站www | 久久精品丝袜高跟鞋 | 99久久99久久免费精品蜜桃 | 国产亚洲美女精品久久久2020 | 18禁止看的免费污网站 | 亚洲欧美国产精品久久 | 国内精品久久久久久中文字幕 | 国产美女极度色诱视频www | 男女超爽视频免费播放 | 偷窥日本少妇撒尿chinese | 性开放的女人aaa片 | 人人妻人人藻人人爽欧美一区 | 亚洲欧美综合区丁香五月小说 | 无码国产乱人伦偷精品视频 | www成人国产高清内射 | 亚洲精品国偷拍自产在线观看蜜桃 | 精品久久久久久亚洲精品 | 亚洲精品午夜无码电影网 | av无码久久久久不卡免费网站 | 国产两女互慰高潮视频在线观看 | 国产精品久久国产精品99 | 久久天天躁狠狠躁夜夜免费观看 | 俺去俺来也www色官网 | 国产av剧情md精品麻豆 | 久久午夜无码鲁丝片午夜精品 | 夜精品a片一区二区三区无码白浆 | 国产在线无码精品电影网 | 伊人久久大香线蕉av一区二区 | 性欧美熟妇videofreesex | 午夜免费福利小电影 | 国产精品久久久久无码av色戒 | 蜜桃av抽搐高潮一区二区 | 成人性做爰aaa片免费看 | 色欲久久久天天天综合网精品 | 人妻有码中文字幕在线 | 亚洲国产欧美国产综合一区 | 亚洲小说图区综合在线 | 亚洲色www成人永久网址 | 在线视频网站www色 | 亚洲国产精品久久久天堂 | 欧美人妻一区二区三区 | 午夜男女很黄的视频 | 精品国产aⅴ无码一区二区 | 成熟妇人a片免费看网站 | 亚洲中文字幕乱码av波多ji | 无码中文字幕色专区 | 伊在人天堂亚洲香蕉精品区 | 久久久久亚洲精品中文字幕 | 色综合久久网 | 欧美日本免费一区二区三区 | 亚洲一区二区三区在线观看网站 | 一个人看的视频www在线 | 精品国产一区二区三区av 性色 | 国产精品爱久久久久久久 | 99久久人妻精品免费一区 | 久久久中文久久久无码 | 人妻少妇精品视频专区 | 一本久久伊人热热精品中文字幕 | 午夜男女很黄的视频 | 日韩无套无码精品 | 高清不卡一区二区三区 | 亚洲无人区午夜福利码高清完整版 | 一本无码人妻在中文字幕免费 | 国产在线精品一区二区高清不卡 | 免费人成在线观看网站 | 无码人妻久久一区二区三区不卡 | 少妇无码一区二区二三区 | 久久久久99精品国产片 | 久久综合九色综合欧美狠狠 | 给我免费的视频在线观看 | 亚洲精品成a人在线观看 | 蜜臀aⅴ国产精品久久久国产老师 | 国产片av国语在线观看 | 精品国产精品久久一区免费式 | 蜜桃视频插满18在线观看 | 麻豆果冻传媒2021精品传媒一区下载 | 色婷婷av一区二区三区之红樱桃 | 99国产精品白浆在线观看免费 | 国产精品无码永久免费888 | 日日摸夜夜摸狠狠摸婷婷 | 国产亚洲精品久久久ai换 | 国产乱人无码伦av在线a | 久久99精品久久久久久动态图 | 国产特级毛片aaaaaaa高清 | 蜜桃臀无码内射一区二区三区 | 欧美日韩一区二区三区自拍 | 国产精品美女久久久网av | 天海翼激烈高潮到腰振不止 | 亚洲日本va午夜在线电影 | 人妻有码中文字幕在线 | 日本精品高清一区二区 | 熟妇人妻激情偷爽文 | 激情综合激情五月俺也去 | 天堂一区人妻无码 | 亚洲精品国偷拍自产在线观看蜜桃 | 激情亚洲一区国产精品 | 色狠狠av一区二区三区 | 亚洲热妇无码av在线播放 | 一本久久伊人热热精品中文字幕 | 亚洲精品成人福利网站 | 97夜夜澡人人爽人人喊中国片 | 国产精品久久久久久亚洲影视内衣 | 天堂亚洲免费视频 | 国产免费无码一区二区视频 | 日日天干夜夜狠狠爱 | 强辱丰满人妻hd中文字幕 | 国产高潮视频在线观看 | 久久zyz资源站无码中文动漫 | 国产一精品一av一免费 | 欧美老妇交乱视频在线观看 | 伦伦影院午夜理论片 | 久久久久久国产精品无码下载 | 亚洲成熟女人毛毛耸耸多 | 精品久久久久久人妻无码中文字幕 | 无码人妻丰满熟妇区毛片18 | 久久综合激激的五月天 | √8天堂资源地址中文在线 | 骚片av蜜桃精品一区 | 久久天天躁狠狠躁夜夜免费观看 | v一区无码内射国产 | 国产激情无码一区二区app | 国产成人人人97超碰超爽8 | 国产肉丝袜在线观看 | 伊人久久大香线焦av综合影院 | 亚洲一区av无码专区在线观看 | 日韩欧美成人免费观看 | 无码精品人妻一区二区三区av | 免费男性肉肉影院 | 久久久精品国产sm最大网站 | 国产 精品 自在自线 | 丰满妇女强制高潮18xxxx | 亚洲码国产精品高潮在线 | 精品国产一区二区三区四区在线看 | 国内丰满熟女出轨videos | 97夜夜澡人人爽人人喊中国片 | 国产成人综合在线女婷五月99播放 | 小泽玛莉亚一区二区视频在线 | 国产无套粉嫩白浆在线 | 欧美日韩亚洲国产精品 | 人人妻人人澡人人爽欧美一区九九 | 久久天天躁夜夜躁狠狠 | 粗大的内捧猛烈进出视频 | 亚洲欧美日韩国产精品一区二区 | 国内精品人妻无码久久久影院 | 国产精品亚洲五月天高清 | 色欲av亚洲一区无码少妇 | 久久综合九色综合欧美狠狠 | 日日鲁鲁鲁夜夜爽爽狠狠 | 国产农村妇女高潮大叫 | 欧美日韩精品 | 欧美三级a做爰在线观看 | 一个人看的www免费视频在线观看 | 水蜜桃av无码 | 人妻有码中文字幕在线 | 日本饥渴人妻欲求不满 | 美女黄网站人色视频免费国产 | 欧美人妻一区二区三区 | 少妇性l交大片欧洲热妇乱xxx | 国产舌乚八伦偷品w中 | 日日噜噜噜噜夜夜爽亚洲精品 | 少妇性l交大片 | 国产精品人人爽人人做我的可爱 | 色欲av亚洲一区无码少妇 | v一区无码内射国产 | 美女极度色诱视频国产 | 国内少妇偷人精品视频 | 天堂亚洲2017在线观看 | 18禁止看的免费污网站 | 国产两女互慰高潮视频在线观看 | 亚洲男女内射在线播放 | 日本大乳高潮视频在线观看 | 亚洲自偷自拍另类第1页 | 日韩人妻系列无码专区 | 亚洲日韩av一区二区三区四区 | 精品国偷自产在线视频 | 亚拍精品一区二区三区探花 | av无码电影一区二区三区 | 国产精品美女久久久久av爽李琼 | 丰满人妻翻云覆雨呻吟视频 | 乱人伦中文视频在线观看 | 久久久久久亚洲精品a片成人 | 亚洲午夜无码久久 | 亚洲人成网站色7799 | 亚洲熟妇色xxxxx欧美老妇y | 性欧美大战久久久久久久 | 国产精品国产自线拍免费软件 | 乱码午夜-极国产极内射 | 国产99久久精品一区二区 | 亚洲精品中文字幕 | 国产精品18久久久久久麻辣 | 97夜夜澡人人双人人人喊 | 亚洲日韩av一区二区三区中文 | 丰满护士巨好爽好大乳 | 色一情一乱一伦一视频免费看 | 国产 精品 自在自线 | 精品无码国产一区二区三区av | 国产电影无码午夜在线播放 | 久久综合九色综合97网 | 丰满少妇高潮惨叫视频 | 亚洲国产成人a精品不卡在线 | 综合激情五月综合激情五月激情1 | 久久精品中文字幕一区 | 国产va免费精品观看 | 亚洲国产精品毛片av不卡在线 | 午夜精品久久久内射近拍高清 | 久久精品人人做人人综合试看 | 国产av人人夜夜澡人人爽麻豆 | 荫蒂添的好舒服视频囗交 | 亚洲色欲色欲天天天www | 精品亚洲韩国一区二区三区 | 激情内射亚州一区二区三区爱妻 | 日韩无套无码精品 | a片免费视频在线观看 | 乱人伦中文视频在线观看 | 国色天香社区在线视频 | 久久综合九色综合欧美狠狠 | 亚洲无人区午夜福利码高清完整版 | 男人扒开女人内裤强吻桶进去 | 在教室伦流澡到高潮hnp视频 | 扒开双腿疯狂进出爽爽爽视频 | 国产在线无码精品电影网 | 日本一卡2卡3卡四卡精品网站 | 丝袜 中出 制服 人妻 美腿 | 一本色道久久综合狠狠躁 | 性做久久久久久久久 | 亚洲成色在线综合网站 | 97久久精品无码一区二区 | 亚洲va中文字幕无码久久不卡 | 丰满少妇高潮惨叫视频 | 97se亚洲精品一区 | 中文字幕无码av波多野吉衣 | 人人妻人人澡人人爽欧美一区 | 成人欧美一区二区三区 | 久久zyz资源站无码中文动漫 | 精品国产一区av天美传媒 | 亚洲狠狠婷婷综合久久 | 亚洲色欲久久久综合网东京热 | 无码av免费一区二区三区试看 | 女高中生第一次破苞av | 国产网红无码精品视频 | 高清国产亚洲精品自在久久 | 精品国产aⅴ无码一区二区 | 色综合视频一区二区三区 | 亚洲日本va中文字幕 | 国产精品久久久久9999小说 | 欧美三级a做爰在线观看 | 国产猛烈高潮尖叫视频免费 | 国产一区二区三区影院 | 午夜理论片yy44880影院 | 国产无遮挡吃胸膜奶免费看 | 波多野42部无码喷潮在线 | 两性色午夜免费视频 | 荫蒂被男人添的好舒服爽免费视频 | 亚洲精品国产第一综合99久久 | 国产乱人伦av在线无码 | 人妻夜夜爽天天爽三区 | 亚洲一区二区三区香蕉 | 精品国产aⅴ无码一区二区 | 国产精品自产拍在线观看 | 性做久久久久久久免费看 | 一个人看的www免费视频在线观看 | 色综合久久久无码中文字幕 | 人人爽人人澡人人人妻 | 亚洲精品一区二区三区在线观看 | 又大又紧又粉嫩18p少妇 | 欧美性色19p | 台湾无码一区二区 | 帮老师解开蕾丝奶罩吸乳网站 | 乱中年女人伦av三区 | 精品熟女少妇av免费观看 | 欧美人与牲动交xxxx | 欧美亚洲日韩国产人成在线播放 | 久久亚洲精品中文字幕无男同 | 蜜桃av抽搐高潮一区二区 | 性做久久久久久久免费看 | 成人女人看片免费视频放人 | 久久亚洲精品成人无码 | 377p欧洲日本亚洲大胆 | 免费人成网站视频在线观看 | 亚洲中文字幕无码中字 | 国产又粗又硬又大爽黄老大爷视 | 日日噜噜噜噜夜夜爽亚洲精品 | 国产超级va在线观看视频 | 天天综合网天天综合色 | 亚洲国产精品成人久久蜜臀 | 久久综合色之久久综合 | 亚洲中文字幕在线无码一区二区 | 精品久久久久久人妻无码中文字幕 | 成 人 网 站国产免费观看 | 久久亚洲a片com人成 | 日本乱偷人妻中文字幕 | 人人妻人人澡人人爽欧美精品 | 正在播放东北夫妻内射 | 国产av人人夜夜澡人人爽麻豆 | 麻豆国产97在线 | 欧洲 | 成人无码精品1区2区3区免费看 | 亚洲综合另类小说色区 | 国产色精品久久人妻 | 亚洲aⅴ无码成人网站国产app | 精品久久久无码中文字幕 | 狠狠躁日日躁夜夜躁2020 | 国产午夜无码精品免费看 | 亚洲码国产精品高潮在线 | 人妻体内射精一区二区三四 | 伊在人天堂亚洲香蕉精品区 | 对白脏话肉麻粗话av | 六月丁香婷婷色狠狠久久 | 熟女少妇在线视频播放 | 国产va免费精品观看 | 伊人久久婷婷五月综合97色 | 最新国产麻豆aⅴ精品无码 | 99国产精品白浆在线观看免费 | 亚洲熟妇色xxxxx亚洲 | 亚洲中文字幕av在天堂 | 欧美国产亚洲日韩在线二区 | 久久久久人妻一区精品色欧美 | 少妇性l交大片欧洲热妇乱xxx | 正在播放老肥熟妇露脸 | 最近免费中文字幕中文高清百度 | 一本色道久久综合亚洲精品不卡 | 成人精品视频一区二区三区尤物 | 在线播放无码字幕亚洲 | 成熟妇人a片免费看网站 | 久久综合狠狠综合久久综合88 | 国产av无码专区亚洲awww | 精品久久8x国产免费观看 | 成人免费视频一区二区 | 夜夜夜高潮夜夜爽夜夜爰爰 | 97无码免费人妻超级碰碰夜夜 | 中文字幕av无码一区二区三区电影 | 欧美一区二区三区视频在线观看 | 日日天干夜夜狠狠爱 | 精品国产aⅴ无码一区二区 | 377p欧洲日本亚洲大胆 | 熟妇女人妻丰满少妇中文字幕 | 老太婆性杂交欧美肥老太 | 乱人伦人妻中文字幕无码久久网 | 色一情一乱一伦一区二区三欧美 | 中文精品无码中文字幕无码专区 | 玩弄人妻少妇500系列视频 | 一本大道久久东京热无码av | 欧美熟妇另类久久久久久不卡 | 亚洲国产精品久久人人爱 | 国产精品第一区揄拍无码 | 中文字幕+乱码+中文字幕一区 | 午夜免费福利小电影 | 国产一精品一av一免费 | 玩弄少妇高潮ⅹxxxyw | 久久久www成人免费毛片 | 亚洲日韩av一区二区三区中文 | 日韩精品乱码av一区二区 | 欧美日韩久久久精品a片 | 国产美女精品一区二区三区 | 亚洲成色www久久网站 | 99视频精品全部免费免费观看 | 国产午夜手机精彩视频 | 国产精品第一区揄拍无码 | 国产成人无码av片在线观看不卡 | 老熟妇仑乱视频一区二区 | 夜夜高潮次次欢爽av女 | √天堂资源地址中文在线 | 2020久久超碰国产精品最新 | 亚洲成a人片在线观看无码 | 天海翼激烈高潮到腰振不止 | 综合网日日天干夜夜久久 | 亚洲欧洲无卡二区视頻 | 欧美精品一区二区精品久久 | 日日橹狠狠爱欧美视频 | 麻豆国产97在线 | 欧洲 | 一本久久a久久精品vr综合 | 强伦人妻一区二区三区视频18 | 无码精品人妻一区二区三区av | 国产成人无码专区 | 国产精品人妻一区二区三区四 | 色综合视频一区二区三区 | 日韩少妇内射免费播放 | 亚洲中文字幕成人无码 | 丰满人妻被黑人猛烈进入 | 中文字幕乱码人妻无码久久 | 久久综合久久自在自线精品自 | 亚洲精品一区二区三区在线 | 一二三四在线观看免费视频 | 99精品视频在线观看免费 | 亚洲人交乣女bbw | 亚洲成a人片在线观看无码 | av无码久久久久不卡免费网站 | 在线成人www免费观看视频 | 中文字幕无码免费久久99 | 97精品国产97久久久久久免费 | 国产办公室秘书无码精品99 | 久久久无码中文字幕久... | 无码人妻出轨黑人中文字幕 | 日韩亚洲欧美中文高清在线 | 精品熟女少妇av免费观看 | 国产成人无码av一区二区 | 精品日本一区二区三区在线观看 | 99re在线播放 | 日日摸天天摸爽爽狠狠97 | 午夜丰满少妇性开放视频 | 国产麻豆精品精东影业av网站 | 性生交大片免费看女人按摩摩 | 亚洲成av人片天堂网无码】 | av无码不卡在线观看免费 | 国产农村妇女高潮大叫 | 扒开双腿疯狂进出爽爽爽视频 | 荫蒂被男人添的好舒服爽免费视频 | 久久综合九色综合欧美狠狠 | 性色av无码免费一区二区三区 | 亚洲男人av香蕉爽爽爽爽 | 午夜福利一区二区三区在线观看 | 精品久久久无码人妻字幂 | 久久久亚洲欧洲日产国码αv | 高清国产亚洲精品自在久久 | 一本久道久久综合狠狠爱 | 国产片av国语在线观看 | 国产精品人人妻人人爽 | www国产精品内射老师 | 丰满人妻精品国产99aⅴ | 51国偷自产一区二区三区 | 国产精品福利视频导航 | 一区二区三区高清视频一 | 久久久国产精品无码免费专区 | 久久久国产一区二区三区 | 亚洲熟妇色xxxxx欧美老妇 | 无码吃奶揉捏奶头高潮视频 | 成人无码视频免费播放 | 国产成人综合色在线观看网站 | 国内精品人妻无码久久久影院蜜桃 | 初尝人妻少妇中文字幕 | 88国产精品欧美一区二区三区 | 亚洲欧洲日本综合aⅴ在线 | 亚洲色欲久久久综合网东京热 | 99精品国产综合久久久久五月天 | 亚拍精品一区二区三区探花 | 精品久久久久久人妻无码中文字幕 | 欧美亚洲国产一区二区三区 | 国产成人无码午夜视频在线观看 | 强辱丰满人妻hd中文字幕 | 国产成人无码一二三区视频 | 1000部夫妻午夜免费 | 亚洲欧洲无卡二区视頻 | 亚洲aⅴ无码成人网站国产app | 人妻尝试又大又粗久久 | 亚洲日本在线电影 | 18无码粉嫩小泬无套在线观看 | 东京热无码av男人的天堂 | 精品日本一区二区三区在线观看 | 久热国产vs视频在线观看 | 国产成人精品一区二区在线小狼 | 精品无码国产自产拍在线观看蜜 | 亚洲精品www久久久 | 久久熟妇人妻午夜寂寞影院 | 爱做久久久久久 | 日韩人妻无码中文字幕视频 | 伊在人天堂亚洲香蕉精品区 | 亚洲国产高清在线观看视频 | 亚洲成av人在线观看网址 | 牲欲强的熟妇农村老妇女视频 | 亚洲熟妇自偷自拍另类 | 高中生自慰www网站 | 国产精品无码成人午夜电影 | 国产真实乱对白精彩久久 | 免费人成在线观看网站 | 国语精品一区二区三区 | 一本大道伊人av久久综合 | 麻花豆传媒剧国产免费mv在线 | 亚洲人成网站色7799 | 中文字幕中文有码在线 | 久久无码专区国产精品s | 欧美阿v高清资源不卡在线播放 | 伊人久久大香线蕉av一区二区 | 久久亚洲日韩精品一区二区三区 | 少妇太爽了在线观看 | 中文精品无码中文字幕无码专区 | 特级做a爰片毛片免费69 | 亚洲国产精品成人久久蜜臀 | 无码午夜成人1000部免费视频 | 久久久久久久久888 | 动漫av一区二区在线观看 | 精品国产av色一区二区深夜久久 | 亚洲爆乳无码专区 | 人人妻人人澡人人爽欧美一区 | √天堂资源地址中文在线 | 水蜜桃色314在线观看 | 精品国产国产综合精品 | 狠狠噜狠狠狠狠丁香五月 | 内射爽无广熟女亚洲 | 无码中文字幕色专区 | 奇米影视888欧美在线观看 | 久久97精品久久久久久久不卡 | 帮老师解开蕾丝奶罩吸乳网站 | 久久99精品久久久久久动态图 | 日本精品高清一区二区 | 亚洲啪av永久无码精品放毛片 | 亚洲色在线无码国产精品不卡 | 内射白嫩少妇超碰 | 精品人妻人人做人人爽夜夜爽 | 成人无码视频免费播放 | 亚洲人成无码网www | 久久精品人妻少妇一区二区三区 | 国产亚洲人成a在线v网站 | 综合激情五月综合激情五月激情1 | 青春草在线视频免费观看 | 久久97精品久久久久久久不卡 | 国产亚av手机在线观看 | 波多野结衣乳巨码无在线观看 | 夜夜躁日日躁狠狠久久av | 久久国产精品萌白酱免费 | 久久综合给合久久狠狠狠97色 | 撕开奶罩揉吮奶头视频 | 好屌草这里只有精品 | 少妇无码av无码专区在线观看 | 午夜丰满少妇性开放视频 | 少妇性俱乐部纵欲狂欢电影 | 亚洲综合无码一区二区三区 | 国产精品沙发午睡系列 | 亚洲成a人片在线观看无码3d | 亚洲小说图区综合在线 | 久激情内射婷内射蜜桃人妖 | 四虎影视成人永久免费观看视频 | 欧洲熟妇色 欧美 | 99久久精品无码一区二区毛片 | 青青青手机频在线观看 | 乱人伦人妻中文字幕无码 | 黄网在线观看免费网站 | 又黄又爽又色的视频 | 国产真实乱对白精彩久久 | 亚洲国产精品成人久久蜜臀 | 欧美精品无码一区二区三区 | 偷窥村妇洗澡毛毛多 | 日本高清一区免费中文视频 | 丰满少妇熟乱xxxxx视频 | 99精品国产综合久久久久五月天 | 亚洲 日韩 欧美 成人 在线观看 | 国产av一区二区精品久久凹凸 | 国产午夜福利100集发布 | 又大又黄又粗又爽的免费视频 | 中文字幕日韩精品一区二区三区 | 国产精品高潮呻吟av久久 | 日本熟妇浓毛 | 欧美精品无码一区二区三区 | 内射白嫩少妇超碰 | 中文字幕日产无线码一区 | 精品熟女少妇av免费观看 | 狠狠色丁香久久婷婷综合五月 | 丰满妇女强制高潮18xxxx | 乌克兰少妇xxxx做受 | 国产乱子伦视频在线播放 | 亚洲人亚洲人成电影网站色 | 无码人妻久久一区二区三区不卡 | 国产黑色丝袜在线播放 | 水蜜桃色314在线观看 | 日本一卡二卡不卡视频查询 | 少妇性荡欲午夜性开放视频剧场 | 俄罗斯老熟妇色xxxx | 少妇邻居内射在线 | 中文字幕无码免费久久9一区9 | 在线亚洲高清揄拍自拍一品区 | 丰满肥臀大屁股熟妇激情视频 | 亚洲国精产品一二二线 | 特级做a爰片毛片免费69 | 国产亚洲视频中文字幕97精品 | 日本一卡2卡3卡四卡精品网站 | 最新国产麻豆aⅴ精品无码 | 精品无码一区二区三区爱欲 | 欧洲欧美人成视频在线 | 中文无码伦av中文字幕 | 国产明星裸体无码xxxx视频 | 成在人线av无码免费 | 女人被男人躁得好爽免费视频 | 天堂一区人妻无码 | 又粗又大又硬毛片免费看 | 国产午夜无码精品免费看 | 亚洲无人区午夜福利码高清完整版 | 亚洲欧洲无卡二区视頻 | 亚洲区小说区激情区图片区 | 色婷婷久久一区二区三区麻豆 | 波多野结衣 黑人 | 国产人妻精品午夜福利免费 | 亚洲国产av美女网站 | 国产精品久免费的黄网站 | 亚洲国产欧美日韩精品一区二区三区 | 久久国产36精品色熟妇 | 人妻少妇被猛烈进入中文字幕 | 欧美精品免费观看二区 | 蜜桃无码一区二区三区 | 日本熟妇人妻xxxxx人hd | 久久久久久久女国产乱让韩 | 亚洲va中文字幕无码久久不卡 | 国产午夜亚洲精品不卡 | 在线亚洲高清揄拍自拍一品区 | 一本一道久久综合久久 | 在线播放亚洲第一字幕 | 色欲av亚洲一区无码少妇 | 日日橹狠狠爱欧美视频 | 俄罗斯老熟妇色xxxx | 1000部啪啪未满十八勿入下载 | 在线观看欧美一区二区三区 | 131美女爱做视频 | 国产欧美亚洲精品a | 鲁鲁鲁爽爽爽在线视频观看 | 性色av无码免费一区二区三区 | 人人妻在人人 | 伊人久久大香线蕉午夜 | 熟妇人妻无码xxx视频 | 国产日产欧产精品精品app | 欧美日本精品一区二区三区 | 日韩人妻无码一区二区三区久久99 | 午夜嘿嘿嘿影院 | 蜜桃av抽搐高潮一区二区 | 精品久久久久久人妻无码中文字幕 | 一区二区三区乱码在线 | 欧洲 | 免费观看又污又黄的网站 | 人妻少妇精品无码专区动漫 | 色老头在线一区二区三区 | 国内精品九九久久久精品 | 中文字幕中文有码在线 | 无遮无挡爽爽免费视频 | 精品少妇爆乳无码av无码专区 | 日本爽爽爽爽爽爽在线观看免 | 亚洲成av人综合在线观看 | 丁香花在线影院观看在线播放 | 特级做a爰片毛片免费69 | 日本精品少妇一区二区三区 | 久久五月精品中文字幕 | 妺妺窝人体色www婷婷 | 极品尤物被啪到呻吟喷水 | 少妇高潮喷潮久久久影院 | 精品无码一区二区三区的天堂 | 性色欲网站人妻丰满中文久久不卡 | 人妻少妇精品无码专区动漫 | 午夜福利不卡在线视频 | 亚洲另类伦春色综合小说 | 麻豆国产人妻欲求不满谁演的 | 久久熟妇人妻午夜寂寞影院 | 亚洲国产精品无码一区二区三区 | 日韩精品无码一区二区中文字幕 | 亚洲国产高清在线观看视频 | 亚洲a无码综合a国产av中文 | 高中生自慰www网站 | 色狠狠av一区二区三区 | 亚洲国产成人a精品不卡在线 | 国内老熟妇对白xxxxhd | 亚洲综合精品香蕉久久网 | 一区二区三区高清视频一 | 久青草影院在线观看国产 | 亚洲国产精品美女久久久久 | 小泽玛莉亚一区二区视频在线 | 无码人妻少妇伦在线电影 | 国产国产精品人在线视 | 日日碰狠狠躁久久躁蜜桃 | 女人被男人爽到呻吟的视频 | 成人三级无码视频在线观看 | 精品久久综合1区2区3区激情 | 鲁一鲁av2019在线 | 人妻少妇精品视频专区 | 天天av天天av天天透 | 偷窥村妇洗澡毛毛多 | 亚洲狠狠色丁香婷婷综合 | 人妻人人添人妻人人爱 | 久久久久久久久888 | 成年女人永久免费看片 | 亚洲人交乣女bbw | 久久成人a毛片免费观看网站 | 波多野结衣aⅴ在线 | 美女毛片一区二区三区四区 | 色五月五月丁香亚洲综合网 | 国产婷婷色一区二区三区在线 | 中文字幕无码视频专区 | 久久zyz资源站无码中文动漫 | 欧洲精品码一区二区三区免费看 | 国产无遮挡又黄又爽又色 | 国产特级毛片aaaaaa高潮流水 | 精品国产成人一区二区三区 | 色诱久久久久综合网ywww | 无码人中文字幕 | 乱人伦人妻中文字幕无码 | 日本va欧美va欧美va精品 | 日本一卡2卡3卡四卡精品网站 | 久久久久久av无码免费看大片 | 亚洲成av人片在线观看无码不卡 | 男女超爽视频免费播放 | 国产美女精品一区二区三区 | 免费中文字幕日韩欧美 | 精品欧洲av无码一区二区三区 | 国产97在线 | 亚洲 | 人妻无码久久精品人妻 | 亚洲 另类 在线 欧美 制服 | 久久99精品国产.久久久久 | 99久久人妻精品免费二区 | 午夜福利试看120秒体验区 | 日韩亚洲欧美精品综合 | 高清无码午夜福利视频 | 青青久在线视频免费观看 | 国产欧美精品一区二区三区 | 精品国产精品久久一区免费式 | 国产偷国产偷精品高清尤物 | 欧美第一黄网免费网站 | 久久亚洲中文字幕精品一区 | 国产又爽又黄又刺激的视频 | 国产又爽又黄又刺激的视频 | 亚洲国产精品无码久久久久高潮 | 精品日本一区二区三区在线观看 | 免费人成网站视频在线观看 | 丰满少妇人妻久久久久久 | 欧美怡红院免费全部视频 | 日韩精品无码一本二本三本色 | 中文字幕色婷婷在线视频 | 欧美怡红院免费全部视频 | 亚洲小说春色综合另类 | 亚洲熟悉妇女xxx妇女av | 樱花草在线播放免费中文 | √8天堂资源地址中文在线 | 国产精品久免费的黄网站 | 中文字幕乱妇无码av在线 | 久久久久久国产精品无码下载 | 在线观看欧美一区二区三区 | 日本饥渴人妻欲求不满 | 熟妇人妻激情偷爽文 | 97无码免费人妻超级碰碰夜夜 | 中文字幕 人妻熟女 | 99视频精品全部免费免费观看 | 欧美日韩综合一区二区三区 | 在线а√天堂中文官网 | 人妻尝试又大又粗久久 | 99久久人妻精品免费一区 | 熟女体下毛毛黑森林 | 亚洲人交乣女bbw | 又大又黄又粗又爽的免费视频 | 麻豆成人精品国产免费 | 国产绳艺sm调教室论坛 | 日韩少妇白浆无码系列 | 无码帝国www无码专区色综合 | 午夜精品一区二区三区在线观看 | 国产麻豆精品一区二区三区v视界 | 免费观看激色视频网站 | 亚洲热妇无码av在线播放 | 亚洲伊人久久精品影院 | 国产两女互慰高潮视频在线观看 | 在线播放无码字幕亚洲 | 日本大香伊一区二区三区 | 永久黄网站色视频免费直播 | 亚无码乱人伦一区二区 | 无人区乱码一区二区三区 | 国产一精品一av一免费 | 丰满护士巨好爽好大乳 | 日韩欧美群交p片內射中文 | 中文字幕色婷婷在线视频 | 一本一道久久综合久久 | 日韩人妻无码一区二区三区久久99 | 欧美日韩久久久精品a片 | 伊在人天堂亚洲香蕉精品区 | 亚洲中文字幕在线无码一区二区 | 日韩av无码中文无码电影 | 国产精品99久久精品爆乳 | 亚洲国产欧美国产综合一区 | 中文毛片无遮挡高清免费 | аⅴ资源天堂资源库在线 | 18无码粉嫩小泬无套在线观看 | 久久亚洲精品成人无码 | 女人被男人爽到呻吟的视频 | 5858s亚洲色大成网站www | 久久久www成人免费毛片 | 全黄性性激高免费视频 | 激情内射亚州一区二区三区爱妻 | 国内精品久久久久久中文字幕 | 国产无遮挡吃胸膜奶免费看 | 欧美肥老太牲交大战 | 久久亚洲中文字幕精品一区 | 久9re热视频这里只有精品 | 狠狠色丁香久久婷婷综合五月 | 全黄性性激高免费视频 | 亚洲欧美精品aaaaaa片 | 日本欧美一区二区三区乱码 | 久久亚洲中文字幕精品一区 | 欧美人与物videos另类 | 午夜精品一区二区三区在线观看 | 性生交大片免费看l | 又大又黄又粗又爽的免费视频 | 漂亮人妻洗澡被公强 日日躁 | 国产人成高清在线视频99最全资源 | 人人妻人人澡人人爽人人精品 | 国产av剧情md精品麻豆 | 精品亚洲成av人在线观看 | 色诱久久久久综合网ywww | 55夜色66夜色国产精品视频 | 亚洲无人区午夜福利码高清完整版 | 狂野欧美性猛交免费视频 | 国产午夜无码视频在线观看 | 亚洲色在线无码国产精品不卡 | 少妇被粗大的猛进出69影院 | 无码人妻出轨黑人中文字幕 | 东京热男人av天堂 | 男女超爽视频免费播放 | 久激情内射婷内射蜜桃人妖 | 国产精品鲁鲁鲁 | 国产精品沙发午睡系列 | 又大又硬又爽免费视频 | 中文字幕精品av一区二区五区 | 国产精品国产自线拍免费软件 | 日本在线高清不卡免费播放 | 无码av免费一区二区三区试看 | 久久久久亚洲精品男人的天堂 | 亚洲 日韩 欧美 成人 在线观看 | 日本一卡2卡3卡四卡精品网站 | 亚洲 a v无 码免 费 成 人 a v | 男女猛烈xx00免费视频试看 | 波多野结衣乳巨码无在线观看 | 午夜福利一区二区三区在线观看 | 东京热男人av天堂 | 精品人人妻人人澡人人爽人人 | 久久久久久九九精品久 | 久久精品中文闷骚内射 | 亚洲一区二区三区无码久久 | 国产福利视频一区二区 | 国产高清不卡无码视频 | 国产人妻人伦精品1国产丝袜 | 国产成人人人97超碰超爽8 | 国产人妻久久精品二区三区老狼 | 亚洲欧美日韩国产精品一区二区 | 美女黄网站人色视频免费国产 | 人妻夜夜爽天天爽三区 | 国产特级毛片aaaaaa高潮流水 | 丝袜人妻一区二区三区 | 扒开双腿吃奶呻吟做受视频 | 在线天堂新版最新版在线8 | 中文字幕av伊人av无码av | 99久久亚洲精品无码毛片 | 少妇高潮一区二区三区99 | 久久精品国产大片免费观看 | 精品久久久久久亚洲精品 | 成人无码影片精品久久久 | 十八禁视频网站在线观看 | 国产精品毛多多水多 | 国产熟妇高潮叫床视频播放 | 蜜桃无码一区二区三区 | 久久精品国产99精品亚洲 | 亚洲日韩av一区二区三区四区 | 草草网站影院白丝内射 | 午夜精品久久久内射近拍高清 | 国产深夜福利视频在线 | 久久人妻内射无码一区三区 | 日本大香伊一区二区三区 | 国产精品欧美成人 | 亚洲欧美精品aaaaaa片 | 国产在线精品一区二区三区直播 | 国产av久久久久精东av | 国产在线一区二区三区四区五区 | 欧美日韩在线亚洲综合国产人 | 久久 国产 尿 小便 嘘嘘 | 国产三级久久久精品麻豆三级 | 亚洲熟妇色xxxxx欧美老妇y | 熟妇人妻无乱码中文字幕 | 日日噜噜噜噜夜夜爽亚洲精品 | 动漫av一区二区在线观看 | 婷婷丁香六月激情综合啪 | 一本一道久久综合久久 | 亚洲精品国产精品乱码视色 | 精品少妇爆乳无码av无码专区 | 国产乱人无码伦av在线a | 少妇性l交大片 | 国产亚洲人成在线播放 | 午夜时刻免费入口 | 超碰97人人做人人爱少妇 | 少妇性俱乐部纵欲狂欢电影 | 久久婷婷五月综合色国产香蕉 | 精品偷拍一区二区三区在线看 | 少妇厨房愉情理9仑片视频 | 久久久久亚洲精品中文字幕 | 色欲综合久久中文字幕网 | 一本久久a久久精品亚洲 | 暴力强奷在线播放无码 | 国产熟女一区二区三区四区五区 | 中文字幕乱码亚洲无线三区 | 宝宝好涨水快流出来免费视频 | 久久精品国产大片免费观看 | 青青青爽视频在线观看 | 国产av一区二区三区最新精品 | 亚洲人亚洲人成电影网站色 | 国产一区二区三区精品视频 | 无码午夜成人1000部免费视频 | 色欲久久久天天天综合网精品 | 欧美性生交xxxxx久久久 | 国产高清不卡无码视频 | 久久久国产精品无码免费专区 | 东京热无码av男人的天堂 | 国产精品理论片在线观看 | 中文久久乱码一区二区 | 蜜臀aⅴ国产精品久久久国产老师 | 澳门永久av免费网站 | а√资源新版在线天堂 | 一二三四在线观看免费视频 | 日本乱人伦片中文三区 | 久久综合狠狠综合久久综合88 | 欧美性生交xxxxx久久久 | 青草青草久热国产精品 | 国产无遮挡又黄又爽免费视频 | 精品人人妻人人澡人人爽人人 | 亚拍精品一区二区三区探花 | 亚洲另类伦春色综合小说 | 丝袜美腿亚洲一区二区 | 亚洲の无码国产の无码步美 | 中文字幕无线码 | av无码不卡在线观看免费 | 亚洲国产精品无码久久久久高潮 | 成年美女黄网站色大免费全看 | 午夜熟女插插xx免费视频 | 亚洲熟妇色xxxxx欧美老妇 | 欧美 亚洲 国产 另类 | 久久国产36精品色熟妇 | 粉嫩少妇内射浓精videos | 免费国产黄网站在线观看 | 丝袜 中出 制服 人妻 美腿 | 亚洲s色大片在线观看 | 在线播放无码字幕亚洲 | 久久精品视频在线看15 | 欧美日韩综合一区二区三区 | 国産精品久久久久久久 | 日本一区二区更新不卡 | 国产高清不卡无码视频 | 免费国产黄网站在线观看 | 国产热a欧美热a在线视频 | 在线看片无码永久免费视频 | 精品国产青草久久久久福利 | 最近中文2019字幕第二页 | 六十路熟妇乱子伦 | 亚洲国产精品久久久天堂 | 无码人妻精品一区二区三区不卡 | 国产偷国产偷精品高清尤物 | 欧美野外疯狂做受xxxx高潮 | 精品久久久久久亚洲精品 | 日日麻批免费40分钟无码 | 亚洲s色大片在线观看 | 国产舌乚八伦偷品w中 | 国産精品久久久久久久 | 日本va欧美va欧美va精品 | 亚洲区欧美区综合区自拍区 | 国产农村妇女aaaaa视频 撕开奶罩揉吮奶头视频 | 国产色xx群视频射精 | 亚洲无人区午夜福利码高清完整版 | 精品aⅴ一区二区三区 | 麻花豆传媒剧国产免费mv在线 | 日韩亚洲欧美中文高清在线 | 中文字幕无码av波多野吉衣 | 人妻尝试又大又粗久久 | 国产内射老熟女aaaa | 亚洲熟妇自偷自拍另类 | 中文字幕av日韩精品一区二区 | 伊人久久婷婷五月综合97色 | 日日干夜夜干 | 久久天天躁夜夜躁狠狠 | 麻花豆传媒剧国产免费mv在线 | 中文字幕乱码亚洲无线三区 | 亚洲一区二区三区偷拍女厕 | 九月婷婷人人澡人人添人人爽 | 精品人妻中文字幕有码在线 | 日韩人妻无码一区二区三区久久99 | 少妇人妻大乳在线视频 | 国产国产精品人在线视 | 国产精品久久久av久久久 | 漂亮人妻洗澡被公强 日日躁 | 亚洲精品www久久久 | 欧美怡红院免费全部视频 | 国产精品美女久久久 | 黑人大群体交免费视频 | 国产精品久久久久久久9999 | 国产极品美女高潮无套在线观看 | 蜜桃av抽搐高潮一区二区 | 又色又爽又黄的美女裸体网站 | 综合人妻久久一区二区精品 | 亚洲欧美综合区丁香五月小说 | 鲁一鲁av2019在线 | 久久久中文字幕日本无吗 | a在线亚洲男人的天堂 | 久久久久亚洲精品男人的天堂 | 欧美三级a做爰在线观看 | 国产精品无码mv在线观看 | 老子影院午夜伦不卡 | 在线观看国产午夜福利片 | 国产熟女一区二区三区四区五区 | 色五月五月丁香亚洲综合网 | 婷婷丁香五月天综合东京热 | 久激情内射婷内射蜜桃人妖 | 日韩亚洲欧美精品综合 | 中文字幕无码热在线视频 | 国产精品无套呻吟在线 | 无人区乱码一区二区三区 | 极品尤物被啪到呻吟喷水 | 男人扒开女人内裤强吻桶进去 | 国产成人精品一区二区在线小狼 | 女人被男人躁得好爽免费视频 | 国产无遮挡又黄又爽又色 | 丁香啪啪综合成人亚洲 | 国产在热线精品视频 | 国产suv精品一区二区五 | 精品水蜜桃久久久久久久 | av无码久久久久不卡免费网站 | 国产精品18久久久久久麻辣 | 色 综合 欧美 亚洲 国产 | 国产精华av午夜在线观看 | 成人免费视频一区二区 | 日产精品99久久久久久 | 自拍偷自拍亚洲精品被多人伦好爽 | 伊人久久大香线蕉午夜 | 国产成人无码av在线影院 | 亚洲国产欧美国产综合一区 | 国产xxx69麻豆国语对白 | 无码成人精品区在线观看 | 免费网站看v片在线18禁无码 | 日本爽爽爽爽爽爽在线观看免 | 国产激情无码一区二区 | 国产手机在线αⅴ片无码观看 | 精品欧洲av无码一区二区三区 | 日韩视频 中文字幕 视频一区 | 久久综合色之久久综合 | 亚洲男女内射在线播放 | 久久久精品成人免费观看 | 日日夜夜撸啊撸 | 粉嫩少妇内射浓精videos | 国产 浪潮av性色四虎 | 日本一区二区三区免费播放 | 国产精品沙发午睡系列 | 中文字幕乱码人妻二区三区 | 又黄又爽又色的视频 | 男女作爱免费网站 | 久久久久人妻一区精品色欧美 | 午夜精品久久久内射近拍高清 | 国产真实夫妇视频 | 纯爱无遮挡h肉动漫在线播放 | 999久久久国产精品消防器材 | 亚洲成色www久久网站 | av香港经典三级级 在线 | 国产精品国产自线拍免费软件 | 无码一区二区三区在线 | 国产成人无码区免费内射一片色欲 | 国内丰满熟女出轨videos | 九月婷婷人人澡人人添人人爽 | 成人亚洲精品久久久久软件 | 一本色道久久综合狠狠躁 | 麻豆av传媒蜜桃天美传媒 | 免费看少妇作爱视频 | 国产精品人人妻人人爽 | 国产精品办公室沙发 | 一区二区三区乱码在线 | 欧洲 | 纯爱无遮挡h肉动漫在线播放 | 俺去俺来也www色官网 | 天天拍夜夜添久久精品 | 荫蒂被男人添的好舒服爽免费视频 | 性欧美videos高清精品 | 亚洲小说图区综合在线 | 免费无码肉片在线观看 | 久久精品一区二区三区四区 | 日日摸天天摸爽爽狠狠97 | 久久久精品成人免费观看 | 亚洲综合无码久久精品综合 | 欧美性生交xxxxx久久久 | 久久久久成人精品免费播放动漫 | 欧美 日韩 亚洲 在线 | 女人被男人躁得好爽免费视频 | 国产猛烈高潮尖叫视频免费 | 国产亚洲欧美日韩亚洲中文色 | 亚洲中文字幕无码中文字在线 | 娇妻被黑人粗大高潮白浆 | 98国产精品综合一区二区三区 | 无码av中文字幕免费放 | 久久久久久亚洲精品a片成人 | 国产精品无码久久av | 国产精品a成v人在线播放 | 日韩精品无码免费一区二区三区 | 欧美人妻一区二区三区 | 久久综合给久久狠狠97色 | 成人免费视频一区二区 | 欧美午夜特黄aaaaaa片 | 熟女体下毛毛黑森林 | 日韩人妻无码一区二区三区久久99 | 中文字幕亚洲情99在线 | 色五月丁香五月综合五月 | 欧美日本免费一区二区三区 | 国产成人无码午夜视频在线观看 | 狠狠躁日日躁夜夜躁2020 | 精品国产aⅴ无码一区二区 | 秋霞特色aa大片 | 狠狠色噜噜狠狠狠狠7777米奇 | 国产一区二区三区影院 | 国产精品a成v人在线播放 | 蜜桃无码一区二区三区 | 亚洲综合另类小说色区 | 乌克兰少妇性做爰 | 少妇高潮一区二区三区99 | 欧美日韩一区二区三区自拍 | 亚洲国产综合无码一区 | 午夜不卡av免费 一本久久a久久精品vr综合 | 男人和女人高潮免费网站 | а√天堂www在线天堂小说 | 国产特级毛片aaaaaa高潮流水 | 97精品人妻一区二区三区香蕉 | ass日本丰满熟妇pics | 日日摸天天摸爽爽狠狠97 | 午夜福利一区二区三区在线观看 | 成人av无码一区二区三区 | 丁香花在线影院观看在线播放 | 国产精品成人av在线观看 | 亚洲欧美日韩国产精品一区二区 | 水蜜桃色314在线观看 | 国产午夜无码精品免费看 | 性生交大片免费看l | 久久久精品欧美一区二区免费 | 激情国产av做激情国产爱 | 亚洲色在线无码国产精品不卡 | 任你躁国产自任一区二区三区 | 欧美人妻一区二区三区 | 成人精品视频一区二区 | 久久天天躁狠狠躁夜夜免费观看 | 成人欧美一区二区三区黑人免费 | 欧美自拍另类欧美综合图片区 | 亚洲国产精品久久久久久 | 色综合久久88色综合天天 | 国产偷国产偷精品高清尤物 | 欧洲美熟女乱又伦 | 18精品久久久无码午夜福利 | 日本丰满熟妇videos | 三上悠亚人妻中文字幕在线 | 免费中文字幕日韩欧美 | 好屌草这里只有精品 | 欧美成人高清在线播放 | 国模大胆一区二区三区 | 欧美日韩色另类综合 | 久久久久久久久蜜桃 | 麻花豆传媒剧国产免费mv在线 | 亚洲国产精品久久久久久 | 久久久国产精品无码免费专区 | 中文字幕人成乱码熟女app | 99er热精品视频 | 无遮无挡爽爽免费视频 | 中文字幕乱码中文乱码51精品 | 欧洲vodafone精品性 | 乱码av麻豆丝袜熟女系列 | 国产精品.xx视频.xxtv | 5858s亚洲色大成网站www | 欧美日韩视频无码一区二区三 | 亚洲中文字幕无码中文字在线 | 国内少妇偷人精品视频 | 国产av无码专区亚洲awww | 亚洲a无码综合a国产av中文 | 天堂久久天堂av色综合 | 亚洲色www成人永久网址 | 成人无码视频免费播放 | 成人精品一区二区三区中文字幕 | 九九久久精品国产免费看小说 | 又黄又爽又色的视频 | 国产福利视频一区二区 | 中文字幕日产无线码一区 |