-
Notifications
You must be signed in to change notification settings - Fork 30
[4]: VEditor Components
Ha Hyun soo edited this page Jan 10, 2019
·
14 revisions
- VEditorMediaNode
- VEditorImageNode
- VEditorVideoNode
- VEditorMediaPlaceholderNode
- VEditorDeleteMediaNode
- VEditorOpenGraphNode
- VEditorTypingControlNode
- VEditorTextCellNode
- VEditorTextNode
- VEditorTextStorage
- VEditorTextNode
Under construction…
Under construction…
Under construction…
VEditorOpenGraphNode is basic open graph cell example usage
open class VEditorTypingControlNode: ASButtonNode {
public var typingStyle: VEditorStyle
public let xmlTag: String
public let rule: VEditorRule
public let isBlockStyle: Bool
public let isExternalHandler: Bool
public init(_ xmlTag: String,
rule: VEditorRule,
isBlockStyle: Bool = false,
isExternalHandler: Bool = false) {
- typingStyle: Typing Attribute Style Object
- xmlTag: Typing Identifier
- rule: Editor Rule
- isBlockStyle: Heading, Quote etc. In this case, selectedRange will convert to paragraphRange and use it
- isExternalHandler: Just follow VEditor Regex Text Atttribute Apply Delegate
Under construction…