In This Topic
Gets the attributes of the specified run.
Syntax
'Declaration
Public Sub GetRun( _
ByVal As Integer, _
ByRef As Integer, _
ByRef As Integer, _
ByRef As Font _
)
'Usage
Dim instance As RichText
Dim index As Integer
Dim start As Integer
Dim length As Integer
Dim font As Font
instance.GetRun(index, start, length, font)
public void GetRun(
int ,
out int ,
out int ,
out Font
)
Parameters
- index
- The run index.
- start
- The start character position of the run.
- length
- The total number of characters of the run.
- font
- The font settings of the run.
See Also